‎2009 Sep 30 4:35 AM
Dear Expert,
I hv a program which call a function, due to some reason I move the function module from a function grp to another function grp.
Later when I run the program, run time error happen, it can't found the function. What caused this ? How to solve this problem ?
Thanks
‎2009 Sep 30 4:45 AM
its always a good practice to leave one function module in its own function group.
Re-create a new function group and create function module in it and copy paste all the code in the new one. There will be couple of includes which would be created.. those might be missing when you moved to another function group.
‎2009 Sep 30 4:45 AM
its always a good practice to leave one function module in its own function group.
Re-create a new function group and create function module in it and copy paste all the code in the new one. There will be couple of includes which would be created.. those might be missing when you moved to another function group.
‎2009 Sep 30 5:11 AM
Hi Chong,
<li>Its not advisable to move function module just like that. Because we use subroutine calls in function module but we write routine code in another include.
<li>We define Global data. moved function modules may use global data.
Thanks
Venkat.O