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 parallel processes that run in background

Former Member
0 Likes
4,522

Can anyone provide some insight on how to debug parallel processes that run in the background. I have a problem where an internal table is running out of space. The internal table is being filled from a custom program that is called from a parallel process in the background. When I set break points in the code that writes to the table, the debbuger does not stop.

1 ACCEPTED SOLUTION
Read only

FredericGirod
Active Contributor
0 Likes
2,164

Start debug in System Debug ( /hs ) and press the SETTINGS button. Check the check-box "Update debugging", and press F8.

A new window will be open for the paralell process.

Have fun

Frédéric

2 REPLIES 2
Read only

FredericGirod
Active Contributor
0 Likes
2,165

Start debug in System Debug ( /hs ) and press the SETTINGS button. Check the check-box "Update debugging", and press F8.

A new window will be open for the paralell process.

Have fun

Frédéric

Read only

Former Member
0 Likes
2,164

The only way to debug background process is goto SM50

Select your background program ( which should be running ). From Menu Program/Mode -> PROGRAM -> DEBUGGING . But your statement "parallel process in the background " is not clear.

Cheers