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

RSBDCSUB?

Former Member
0 Likes
2,786

Hi..

Can you please tell me what exactly teh program RSBDCSUB do and when do we use it?

Thank You

6 REPLIES 6
Read only

Former Member
0 Likes
2,170

Hi,

RSBDCSUB is used to processes the Batch sessions created using BDC session method .You can create the sessions using one program and schedule them to execute at specified time by creating a job that has RSBDCSUB program for procesing those sessions.

Hope this helps.

Read only

Former Member
0 Likes
2,170

Hello,

RSBDCSUB will process the batch.

If useful reward.

Vasanth

Read only

Former Member
0 Likes
2,170

Hi Subhash,

Check the help it gives clear details

Processing Sessions Automatically

Use

In most cases, batch input sessions can be processed automatically. It is not necessary for a session to wait until a system administrator explicitly starts the processing of the session.

This section explains how to have sessions started automatically soon after the session has been generated in an R/3 System.

Prerequisites

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:

session name

date and time of generation

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

Result

Batch input sessions are started automatically rather than by hand. The RSBDCSUB program can be set up to start all sessions that arrive in an R/3 System, or it can be fine-tuned to start only batch input sessions that you expect.

Cheers

VJ

Read only

Former Member
0 Likes
2,170

Hi,

you can use that

when you create the Sessions in BDC,To process the session you will use the program.

Regards

vijay

Read only

Former Member
0 Likes
2,170

HI,

SAP standard program RSBDCSUB helps you to schedule the job. Create a variant for RSBDCSUB with the BDC session name and execute the Program, then the session will be processed, if you want to process more than one session also possible with this Program.

<b>RSBDCSUB --> Release batch-input sessions automaticly</b>

The ABAP program RSBDCSUB must be scheduled as a periodic job in the SAP 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.

Regards

Sudheer

Read only

Former Member
0 Likes
2,170

Hi,

call transactions may result in errors so this

error data is passed to session using

BDC_Open,BDC_INSERT,BDC_CLOSE.

If user wants to open the session

without going to SM35 transaction than we may use

RSBDCSUB program to process error sessions

implicitly

regards

Amole