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

How can i use function modules on table ?

Former Member
0 Likes
949

hi guys.
im newbie at abap and scn, i learn abap nowadays now i have a question.
how can i use function modules when use table ( when call data on table ) ?

anyone can give me a little tip?

Thank you.

Regards,   ÇaÄŸrı gönen .

8 REPLIES 8
Read only

Former Member
0 Likes
911

Table parameters are internal tables that are passed to the function module, changed within it, and returned. The internal tables must be defined in the calling program.Internal tables are passed by reference.

Read ABAP in 21 days for basic knowledge in ABAP


Read only

Former Member
0 Likes
911

This message was moderated.

Read only

arindam_m
Active Contributor
0 Likes
911

Hi,

Checkout the concept of internal tables in SAP documentation. T-Code ABAPDOCU. Should be a good starting point.

Cheers,

Arindam

Read only

uppu_narayan
Active Participant
0 Likes
911

Hi Cagri,

     Use the changing parameter for passing your table to the function module, as table tab is obsolete for normal function module.............all you need is a type which is table type for declaring your table in changing tab.

thanks and regards,

narayan

Read only

Former Member
0 Likes
911

Hi Cagri,

The tables/changing parameter is used when you have to pass an internal table to your function module and return it by applying some operations on it in your function module.

Read only

Former Member
0 Likes
911

Hi Cagri,

  In the FM interface you need to use "Changing" parameter for passing Table.

Thanks

CB

Read only

matt
Active Contributor
0 Likes
911

Have you tried reading the text on function modules you'll find in help.sap.com? You could also read the Rules of Engagement for this site that you agreed to when you signed up.

Read only

Former Member
0 Likes
911

Thanks guys thats all helpfull. its ok.