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

help for my input field

Former Member
0 Likes
593

hi experts,

i put a input filed in my screen pragram,and i wanna give it a help,how should i do?

best regards

zlf

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
557

check these programs.

DEMO_DYNPRO_F4_HELP_DICTIONARY
DEMO_DYNPRO_F4_HELP_DYNPRO
DEMO_DYNPRO_F4_HELP_MODULE

4 REPLIES 4
Read only

Former Member
0 Likes
558

check these programs.

DEMO_DYNPRO_F4_HELP_DICTIONARY
DEMO_DYNPRO_F4_HELP_DYNPRO
DEMO_DYNPRO_F4_HELP_MODULE

Read only

prasanth_kasturi
Active Contributor
0 Likes
557

hi,

you create a event

PROCESS ON VALUE REQUEST

under this event create a module

FIELD fnam MODULE VALUE_REQUEST.

and use the FM

F4IF_INT_TABLE_VALUE_REQUEST

F4IF_FIELD_VALUE_REQUEST to get the F4 help

regards

prasanth

Read only

Former Member
0 Likes
557

hi,

check this...

in screen flow logic

process on value-request.
 field itab-carrid module mod.

for module mod.

module mod input.

  call function 'F4IF_FIELD_VALUE_REQUEST'
    exporting
      tabname     = 'SPFLI'
      fieldname   = 'CARRID'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'ITAB-CARRID'.


endmodule.                 " mod  INPUT

Regards,

Sathish Reddy.

Read only

Former Member
0 Likes
557

thanx all.