‎2013 May 01 9:52 AM
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 .
‎2013 May 01 10:02 AM
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
‎2013 May 01 11:29 AM
‎2013 May 01 12:27 PM
Hi,
Checkout the concept of internal tables in SAP documentation. T-Code ABAPDOCU. Should be a good starting point.
Cheers,
Arindam
‎2013 May 01 12:31 PM
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
‎2013 May 01 1:36 PM
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.
‎2013 May 01 1:44 PM
Hi Cagri,
In the FM interface you need to use "Changing" parameter for passing Table.
Thanks
CB
‎2013 May 01 2:15 PM
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.
‎2013 May 06 8:06 AM