‎2010 Jun 04 11:25 AM
Hi experts,
I want to use a pop up F4 to select both Key for Task List Group (PLNNR) and Group Counter(PLNAL), I'm using the FM F4IF_INT_TABLE_VALUE_REQUEST.
My problem is the next:
My internal table is the next
PLNNR PLNAL
G1 1
G1 2
G1 3
I select the first of the records but as you can not distinguish which of the them I have selected, because in the table return_tab I only have the value 'G1'.
Can you help me??
Thanks
‎2010 Jun 04 11:38 AM
You have to use the tables param DYNPFLD_MAPPING to map the two fields.
Check this similar post for details:
‎2010 Jun 04 11:36 AM
‎2010 Jun 04 11:38 AM
You have to use the tables param DYNPFLD_MAPPING to map the two fields.
Check this similar post for details:
‎2010 Jun 04 12:23 PM
‎2010 Jun 04 12:44 PM
The selected value is returned in table RETURN_TAB if it is not copied to screen fields in the module itself.
In most cases table RETURN_TAB has exactly one line containing the contents of the return column from the selected line of the hit list in field FIELDVAL.
If RETURN_TAB does not contain any lines, the user has terminated the selection.
If there are multiple return columns or if multiple selection was allowed, the table can contain more than one line.
If there is more than one return column, FIELDNAME specifies the column to which the value in FIELDVAL belongs. FIELDNAME corresponds to field FIELDNAME in table FIELD_TAB.
regards
Walter D'souza