procedure getting called in test window not opening.

P J S

Member
Hi,

In a test window, when a try to debug some procedure in a package, it is not opening that procedure there. However it is opening other procedures and triggers that are getting called from that procedure...

I need to see execution of that procedure also.
Did I do some wrong setting that is causing this problem?
Look forward for your support.

Thanks and regards,
--P J S
 
Perhaps the procedure is not compiled with debug information? To to so, right-click on the procedure and select "Add debug information".
 
The user should be aware that this causes the object to be recompiled, which may invalidate other objects (and their state) and the state of the object in question (in case the object you are adding debug information to is a package with state).
Not sure if adding debug information will or will not loose other compilation flags that were used to compile the object previously.
 
Hi,

I recompiled it with debug info using 'Add debug information'. It is now working fine..

Thanks for your help.
Regards,
--P J S
 
Back
Top