‎2009 May 26 1:19 PM
Hi,
I copied one standard function group and made changes to one function module. In the program i am using standard function module and getting filled one internal table itab ( which is declared in top of stnd. function group). Now i want to use itab in another customised function module. how is it possible.
‎2009 May 26 1:24 PM
Hi,
It works, If you create your new FM in the same Function Group
‎2009 May 26 1:29 PM
‎2009 May 26 2:04 PM
You would be able to access that internal table in all the Function modules in the of the same Function Group.
‎2009 May 26 2:24 PM
If the internal table is available in the call stack, then you can access it at runtime using field symbols.
Regards,
Siddharth
‎2009 May 26 2:26 PM
Hi,
While copying the Function group you might have copied the Function module's too.
Check the itab declartion is in the function module or in the function group top include..if it is in Function module then you need move the itab declaration to Top include in function group so that it is accessiable to all the function module. (i.e. the scope of itab would be global)
If the declaration is in Function module then the scope of this itab will be local to FM.
‎2009 May 26 2:43 PM
I want to change One function module of a function group. I want the internal table values from stnd function module to this changed function module. How to maintain them?
‎2009 May 28 6:22 PM