2008 Jan 24 5:11 AM
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
2008 Jan 24 5:15 AM
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
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
2008 Jan 24 5:15 AM
Yes.
You have to code once again for the other field in the select option ie s_field-high
REgards.
2008 Jan 24 5:15 AM
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....
2008 Jan 24 5:15 AM
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