‎2009 Mar 05 7:44 AM
Hey I am debugging a transaction PFCG (To create roles).
In this when I set a breakpoint for a FM 'PRGN_RFC_CREATE_ACTIVITY_GROUP' used in this transaction , it is set successfully.
But when i press 'F8', it does not stop there , needed some help on this.
‎2009 Mar 05 7:47 AM
Hi,
if it didn't trigger the break point, the execution must not be going the the said FM
‎2009 Mar 05 7:48 AM
Hi Dude,
I hope their may be any condition need to be satisfy to execute that FM.. If that is not satisfying then the cursor wont to their and it wont stop..
Change the point of debugger..
‎2009 Mar 05 7:52 AM
Excatly as Dev said. If you still want to ensure that break point is set correctly, do like this:
- before running PFCG switch the debugger on by typein /h in command field
- run the program, it will stop on the first line as debugger is activated
- press F9 and set break point, go to tab Function and paste PRGN_RFC_CREATE_ACTIVITY_GROUP there.
The breakpoint will be set in any calls of this FM, so when it is reached debugger will stop, otherwise it means it never goes to this point.
Regards
Marcin