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

background job error

Former Member
0 Likes
1,664

hello all,

once i run a report in background it shows following error. will some body help me.

Note: i have auth. of background jobs i'm running the same for others reports, this report runs in forground ok and provide output in intrective output,

Job started 00 516 S

Step 001 started (program Z2FI_EX_CLOS_OP_STK, variant &0000000000039, user ID BSSL) 00 550 S

Batch will be reset M7 285 W

Choose at least one scope of list M7 829 E

Job cancelled after system exception ERROR_MESSAGE 00 564 A

Thanks

mukesh

2 REPLIES 2
Read only

vinod_vemuru2
Active Contributor
0 Likes
622

Hi Mukesh,

Can't u debug this back ground job and see what is wrong.

Put a break point in first line of ur code.(Executable statement)

Select cancelled job in SM37, type jdbg in command prompt and press enter. Control will go to ur program. Now debug and see what is wrong.

Most probably it would be timeout error.

Also do u have different logic for fore ground and back groung.

eg: IF sy-batch EQ 'X' . "Back ground run.

Do some thing.

ELSE.

Do some thing else..

ENDIF.

Check above n revert.

Thanks,

Vinod.

Read only

Former Member
0 Likes
622

thanks