‎2008 Jul 28 6:51 AM
Hi All,
i have populated a dynamic internal table & now i have to pass this dynamic internal table from function module so that i uses
this code. & define ITAB in fm TABLE parameter as generic table( means i have given only ITAB in parameter name and left all blanks) but now i'm getting error that "ITAB" is not the type of internal table. pls suggest me ur views,
regards,
FIELD-SYMBOLS: <WA> TYPE ANY.
DATA : WA TYPE LINE OF ITAB.
LOOP AT <dyn_table> ASSIGNING <wa>.
MOVE-CORRESPONDING <dyn_wa> TO WA.
INSERT wa INTO TABLE itab.
ENDLOOP.
‎2008 Jul 28 6:55 AM
‎2008 Jul 28 6:55 AM
‎2008 Jul 28 10:31 AM