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

SELECT-OPTION F4 HELP

Former Member
0 Likes
531

hi all,

i have done coding for f4 help for the select option field as

at selection-screen on value request for s_field-low.

and i have used CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

to display f4 help.

my doubt is do i have to code once again for the other field in the select option ie s_field-high once again as above to get the f4 help .Or is there any other easier method.

thanks and regards,

mahesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
502

Hi,

try to follow the below code

at selection-screen on value request for s_field-low.

perform a1 using s_field-low

at selection-screen on value request for s_field-high.

perform a1 using s_field-high

form a1 usind s_field1

FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

dynpfld = s_field1

endform

Reward me, if useful

L.Velu

3 REPLIES 3
Read only

Former Member
0 Likes
502

Yes.

You have to code once again for the other field in the select option ie s_field-high

REgards.

Read only

Former Member
0 Likes
502

Mahesh,

Use the performs and pass the valus to perform.

at selection-screen on value request for s_field-low.

perform field_help using s_field-low.

at selection-screen on value request for s_field-high.

perform field_help using s_field-low.

FORM field_help using p_s_field-low.

your code her.

ENDFORM.

Don't forget to reward if useful....

Read only

Former Member
0 Likes
503

Hi,

try to follow the below code

at selection-screen on value request for s_field-low.

perform a1 using s_field-low

at selection-screen on value request for s_field-high.

perform a1 using s_field-high

form a1 usind s_field1

FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

dynpfld = s_field1

endform

Reward me, if useful

L.Velu