Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
2 replies
Subscribers
9 subscribers
Views
1454 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
There are 4 fields(ID, FName,LName and Address). Entering ID in text1 and clicki
anilkumark
over 9 years ago
There are 4 fields(ID, FName,LName and Address). Entering ID in text1 and clicking on button/image, FName, LName and Address should be displayed for the entered ID. Data should retrieve from database. Does any one know. Thanks in advance.
OriginalPostID-149372
OriginalPostID-149372
Discussion posts and replies are publicly visible
Parents
0
jakeg
over 9 years ago
You can use a!save() on the saveinto for the button, example: a!save(ri!FName, index(rule!getPersonInformation(ri!id),"FName","")). Its not necessarily best practice to perform a query on the saveinto however as it will reevaluate every time you click. You can also load the person table before the form and then on the saveinto just pull the specific row out using index() and wherecontains(). It depends on your implementation.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
jakeg
over 9 years ago
You can use a!save() on the saveinto for the button, example: a!save(ri!FName, index(rule!getPersonInformation(ri!id),"FName","")). Its not necessarily best practice to perform a query on the saveinto however as it will reevaluate every time you click. You can also load the person table before the form and then on the saveinto just pull the specific row out using index() and wherecontains(). It depends on your implementation.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data