Hi All,
I am able to copying value(12345) and to set to "Loan_No" field of the page using rrset("12345,@F.Loan_No") action successfully. But this value(12345) is not getting populated in verification panel against Loan_No. Please help me out! How i can populate this value in Verification panel for Loan_No. Here is the part of data file:
Text value :
Char confi :
TYPE : Loan_No Position : 0,0,0,0 STATUS : 1 Loan_No : 12345
Note:Loan_No field is created under the page.
Answer by yanglo (1141) | Feb 14, 2018 at 03:14 PM
using rrset("12345,@F.Loan_No") action successfully
This will assign 12345 to a value named as Loan_no under the current field. So, if the current field is named Load_No, this value is "Loan_No.Loan_No", which is what you see in your (page).xml as shown partially.
So,
copy value(12345) and to set to "Loan_No" field of the page
didn't actually happen, which is why you don't see it in Loan_No field in verification panel.
You should try rrset("12345, @F") if the current field is the target.