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

Debugging a submit program

Former Member
0 Likes
8,406

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

7 REPLIES 7
Read only

amit_khare
Active Contributor
0 Likes
3,151

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.

Read only

former_member209217
Active Contributor
0 Likes
3,151

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

Read only

Former Member
0 Likes
3,151

Hi,

Try putting break point inside the program you submit and execute the wrapper program.

Read only

0 Likes
3,151

Hi ,

I have already tried that.

It is not working.

Regards.

Sridevi

Read only

0 Likes
3,151

Put a break point at the submit statement and check.

Read only

Former Member
0 Likes
3,151

This message was moderated.

Read only

Former Member
0 Likes
3,151

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.