‎2010 Feb 04 12:43 PM
Hi Experts,
I have a wrapper program inside which there is a Submit prog via job is used.
Please let me know if there is any possibility to debug this called program.
Thanks for your time.
Regards.
Sridevi
‎2010 Feb 04 12:56 PM
Put a break-pint in that Submitted Program not in your wrapper program).
Use Session Breakpoint, if dont want to use Hard Coded Break Point.
‎2010 Feb 04 12:58 PM
Hi,
Yes, You can do that .Put a break point for the program used in submit statement.
Else, put a break point at the submit statement itself.It automatically takes you to the program.
Regards,
Lakshman.
Edited by: Lakshman N on Feb 4, 2010 2:00 PM
‎2010 Feb 04 12:58 PM
Hi,
Try putting break point inside the program you submit and execute the wrapper program.
‎2010 Feb 04 1:00 PM
Hi ,
I have already tried that.
It is not working.
Regards.
Sridevi
‎2010 Feb 04 1:02 PM
‎2015 Apr 17 10:52 AM
‎2015 Apr 17 12:48 PM
Hi,
Put EndLOOP IN IT.
DATA : LV_FLAG TYPE C.
DO.
IF LV_FLAG = 'X'.
EXIT.
ENDIF.
ENDDO.
GO TO : SM66
Click on debugging and your cursor will be postionted at Do statement.
Change value of lv_flag from inital to 'X'.
Then you will able to debug.
Thanks and Regards,
Dular Sharma.