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

search help(f4) for function module input

Former Member
0 Likes
311

can we create a serch help for function module input giving process

1 ACCEPTED SOLUTION
Read only

former_member182010
Active Participant
0 Likes
286

Hello basichodary,

You can encapsulate the function module within a program. Include the search help in a parameter statement in the calling program and pass the parameter to the function module. For example, suppose you want to have field i_carrid to have a search help. Use the following code.


report  call_function_module.

parameters p_carrid type s_carr_id matchcode object demo_f4_de.
.
.
.
call function 'FUNCTION_MODULE'
   exporting
      i_carrid    = p_carrid
. 
.
.

Kind Regards,

Rae Ellen Woytowiez

1 REPLY 1
Read only

former_member182010
Active Participant
0 Likes
287

Hello basichodary,

You can encapsulate the function module within a program. Include the search help in a parameter statement in the calling program and pass the parameter to the function module. For example, suppose you want to have field i_carrid to have a search help. Use the following code.


report  call_function_module.

parameters p_carrid type s_carr_id matchcode object demo_f4_de.
.
.
.
call function 'FUNCTION_MODULE'
   exporting
      i_carrid    = p_carrid
. 
.
.

Kind Regards,

Rae Ellen Woytowiez