Hi, thanks in advance for your help.
I have a grid that is getting it's data from table business object. When the user selects a row, I would like to populate form fields on the same form (the grid displays only a subset of the fields available - this is like a summary/detail view). I have a function for when user selects row, and I do an assign values activity. My current code looks like:
Local.Form_Field1=BusinessObject.Field1
When the user selects a row, it takes the value from the 1st row and puts it in the form field. The problem is that the BusinessObject is always tied to the first row, if I select the second row, it still puts the first row data in the field. What is the expression to get the BusinessObject tied to the current row?
Thanks.