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

Runtime error when function module moved to another functions group

Former Member
0 Likes
433

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

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
406

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.

2 REPLIES 2
Read only

former_member156446
Active Contributor
0 Likes
408

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.

Read only

venkat_o
Active Contributor
0 Likes
406

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