Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi there,
I have a list that I have sorted with tSortRow and I am using tSampleRow to get the first record of the sorted list.
Is there a way I can assign one of the values of that record to a variable?
I want to use that value to filter records from another list.
Thank you,
Rui
Hi
You can store the value to a global variable or context variable on tJavaRow for used later on other components.
eg:
...tSampleRow--main--tJavaRow
on tJavaRow:
context.varName=input_row.columnName;
On other components, you can use the context variable directly.
Regards
Shong
Hi
You can store the value to a global variable or context variable on tJavaRow for used later on other components.
eg:
...tSampleRow--main--tJavaRow
on tJavaRow:
context.varName=input_row.columnName;
On other components, you can use the context variable directly.
Regards
Shong