‎2008 Jan 11 10:23 AM
Hi Friends,
Here is my requirement on a specific function module.
I have created a function module where, I am filling an internal table by selecting the data from a database table.
My requirement is, I need to pass that internal table into a function module to get a F4 search help. I don't want to write any program to get this functionality. Just I need is a function module.
I try with some function module like
F4IF_SHLP_EXIT_005Z_IDTYP,
HELP_VALUES_GET_WITH_TABLE
But these function module are not fulfilling my requirement.
Note0-: The function module should take the internal table or the internal table field as a parameter.
Help me on this if someone face the same kind of problem
Thanks in Advance
Mrutyun^
‎2008 Jan 11 10:56 AM
Hi,
to pass the internal table to a tables parameter
both must be of same type
if both are of same type
u can use INT1[] = INT2[] to pass internal table value to internal table of FM
if structures are not same then
u will have to loop thru int1 and move values selectively to int2 and everytime append int2
this should sove ur prob
tc
saji