‎2008 Oct 04 10:37 AM
Hi Friends,
I am calling one function in back ground task. that is executing after save of the transaction. And inside of that transaction i am calling one more function but in debugging the cursor is not going inside of that function. What could be the reason. Please help me.
Thanks a lot in advance.
‎2008 Oct 04 10:45 AM
The Function Modules called in Background task are executed when the "Commit" statement in encountered in the program.
It will be not called at the point of CALL FUNCTION...
So if you want to check the control... instead of calling FM in background task call it directly and check the second FM call...
‎2008 Oct 04 10:56 AM
Hi,
Thanks for the reply. But here the question is diffarent. I am calling one function in back ground task and inside of that i am calling another function directly. I am talking about the second function which is called directly. The cursor is not going inside o f the function which is called directly.
‎2008 Oct 04 11:13 AM
When you are not able to get into the First FM, how can you go inside the second FM within that ?
‎2008 Oct 04 11:18 AM
Hi,
Inside of the first function any way i will come after save
using update task debugging. Once it reach inside of firt function and if i press f5 then second function is coming and if i press f5 there then it is coming out of the function and it is not going inside. The second function is called directly not in back ground.
Thanks..
‎2008 Oct 04 11:20 AM
Hi All,
Thanks the problem is solved. The problem is with export paramter. I have to deselect pass value check box. Thanks..
‎2008 Oct 04 2:38 PM
In that case, can you check that the data is being passed properly in the Interface parameters.
‎2008 Oct 04 10:57 AM
Hi,
Try using external Break-point. in the internal function module.
Regards,
Swapnil
‎2008 Oct 04 11:12 AM
I tried external break point also still it is not working.
Thanks..