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

Query on Function Module

Former Member
0 Likes
369

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^

1 REPLY 1
Read only

Former Member
0 Likes
326

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