Application Development 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: 

Batch Scheduling

Former Member
0 Kudos

hi folks,

Can anyone help me understand what is batch scheduling in ABAP? is is same as Batch processing where in you set the batch jobs or any different?

Thanks

Vinu.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

When you are doing data loads into SAP using BDC, you will typically create Batch Input Sessions and execute them seperately either using the program RSBDCSUB or SM35. This is processing the transactions in batch. You are combining several transactions into one batch and then processing them at a time when the online user activity is low.

Background jobs are any processing that is executed in the background. This is slightly different from batch processing in the sense that it need not have any BDC data processing in it. It can be as simple as a report being executed in the background. Batch processing necessarily involves BDC data.

Hope this helps,

Srinivas

3 REPLIES 3

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

I would assume that you are talking about background processing. I guess you could call it batch scheduling. You can create a background job via SM36 and monitor it using SM37.

Regards,

Rich Heilman

former_member188685
Active Contributor
0 Kudos

schedule job and batch processing are same.

in what context are you looking for the difference...

regards

vijay

Former Member
0 Kudos

When you are doing data loads into SAP using BDC, you will typically create Batch Input Sessions and execute them seperately either using the program RSBDCSUB or SM35. This is processing the transactions in batch. You are combining several transactions into one batch and then processing them at a time when the online user activity is low.

Background jobs are any processing that is executed in the background. This is slightly different from batch processing in the sense that it need not have any BDC data processing in it. It can be as simple as a report being executed in the background. Batch processing necessarily involves BDC data.

Hope this helps,

Srinivas