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

Multiple Selection on Matchcode in ALV Grid

Former Member
0 Likes
1,398

I need to implement a Matchcode with multiple selection on a Field in an ALV Grid. On F4 in this specific Field the specific matchcode muss be enable with multiple selection. And after multiple selection by the user, the result muss be concatenate and insert to this field.

Any suggestions or code?

Thanks and Best Regards

Franck

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
834

Create a custom search help. Write your code in Search Help EXIT of the multiple records

selected and concatenate and export to memory.

and in your ALV code import the value from memory

aRs

2 REPLIES 2
Read only

former_member194669
Active Contributor
0 Likes
835

Create a custom search help. Write your code in Search Help EXIT of the multiple records

selected and concatenate and export to memory.

and in your ALV code import the value from memory

aRs

Read only

Former Member
0 Likes
834

Check the program: BCALV_TEST_GRID_F4_HELP.

IN the code, search foor the fm: F4IF_FIELD_VALUE_REQUEST.

You should pass the parameter MULTIPLE_CHOICE = 'X' for multiple choice in the F4 pop up.

Once you get the returned table, you can concatenate the result and put it it the target field.

Regards,

Ravi