‎2011 Sep 22 2:02 PM
can we create a serch help for function module input giving process
‎2011 Sep 22 8:37 PM
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
‎2011 Sep 22 8:37 PM
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