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

AT SELECTION-SCREEN ON VALUE-REQUEST

Former Member
0 Likes
572

Hi,

i want to use AT SELECTION-SCREEN ON VALUE-REQUEST for p_***

to creat f4 help.

i use

  • CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

but in my program ,i have 5 parameters to create f4 help.

how to do this?

should i use the AT SELECTION-SCREEN ON VALUE-REQUEST for p_*** 5 times or something else?

4 REPLIES 4
Read only

Former Member
0 Likes
511

Hi,

Yes, if you want some processing needs to happen or implement your own search help for all the 5 parameters then you need to use the AT SELECTION-SCREEN ON VALUE-REQUEST 5 times.

Cheers,

Kothand

Read only

Former Member
0 Likes
511

Hi

Regards,

Sravanthi

Read only

Former Member
0 Likes
511

You need to create five events with AT SELECTION-SCREEN ON VALUE-REQUEST parameter

Read only

Former Member
0 Likes
511

Hi,

below code is f4 help for one parameter

you need to maintain for each parameter f4 help as per the below code

PARAMETERS : P_FNAME TYPE RLGRAP-FILENAME.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FNAME.

CALL FUNCTION 'F4_FILENAME'

EXPORTING

PROGRAM_NAME = SYST-CPROG

DYNPRO_NUMBER = SYST-DYNNR

FIELD_NAME = ' '

IMPORTING

FILE_NAME = P_FNAME.

regards,

Bhupal.