Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

F4IF_INT_TABLE_VALUE_REQUEST - 2 fields

0 Likes
5,585

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

1 ACCEPTED SOLUTION
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
2,231

You have to use the tables param DYNPFLD_MAPPING to map the two fields.

Check this similar post for details:

4 REPLIES 4
Read only

Former Member
0 Likes
2,231

Hi Lydia,

Kindly check the below thread

Cheerz

Ram

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
2,232

You have to use the tables param DYNPFLD_MAPPING to map the two fields.

Check this similar post for details:

Read only

0 Likes
2,231

Thanks Suhas,

It resolved my problem

Thanks a lot.

Read only

former_member623449
Discoverer
0 Likes
2,231

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