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

Regarding RSBDCSUB

sreeramkumar_madisetty
Active Contributor
0 Likes
490

Hi Gurus

While I am doing Session Processing thru RSBDCSUB I am facing the following problem.

My Requirement is I have to get the error log in the selection screen itself.

By using LOGALL parameters we can get it I hope.

But till now I didn't used that parameter with Submit RSBDCSUB .

Can you please suggest me in this regard.

Ur suggestions are highly encouragable.

Regards,

Kumar

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
456

The ABAP program RSBDCSUB must be scheduled as a periodic job in the R/3 background processing system. RSBDCSUB checks for and starts any batch input sessions that have not yet been run. It schedules such sessions for immediate execution in the background processing system.

Procedure

Schedule RSBDCSUB to run periodically in one or more background jobs.

If you have regularly scheduled batch input runs, you can schedule separate jobs for each of the scheduled data transfers. The start time for the RSBDCSUB job can be set according to the batch input schedule. And you can use a variant to restrict RSBDCSUB only to the batch input sessions that you expect.

With RSBDCSUB, you can use all of the selection criteria offered on the batch input main menu to select sessions to run:

1. session name

2. date and time of generation

3. status: ready to run or held in the queue because of errors

Regards,

Guru

Hi Gurus

While I am doing Session Processing thru RSBDCSUB I am facing the following problem.

My Requirement is I have to get the error log in the selection screen itself.

By using LOGALL parameters we can get it I hope.

But till now I didn't used that parameter with Submit RSBDCSUB .

Can you please suggest me in this regard.

Ur suggestions are highly encouragable.

Regards,

Kumar

2 REPLIES 2
Read only

Former Member
0 Likes
457

The ABAP program RSBDCSUB must be scheduled as a periodic job in the R/3 background processing system. RSBDCSUB checks for and starts any batch input sessions that have not yet been run. It schedules such sessions for immediate execution in the background processing system.

Procedure

Schedule RSBDCSUB to run periodically in one or more background jobs.

If you have regularly scheduled batch input runs, you can schedule separate jobs for each of the scheduled data transfers. The start time for the RSBDCSUB job can be set according to the batch input schedule. And you can use a variant to restrict RSBDCSUB only to the batch input sessions that you expect.

With RSBDCSUB, you can use all of the selection criteria offered on the batch input main menu to select sessions to run:

1. session name

2. date and time of generation

3. status: ready to run or held in the queue because of errors

Regards,

Guru

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
456

Hi

It's Answered.