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: 

BDC session in background

Former Member
0 Kudos

I have an ABAP program which creates a session. I want to execute this session in background and on successful creation of the session, the created session should be processed in background without any user interaction????

5 REPLIES 5

Former Member
0 Kudos

hi,

You can submit the background job RSBDCSUB to start a session in background processing. If several sessions have the same name, RSBDCSUB starts them all.

SAP standard program RSBDCSUB helps you to schedule the job.

Hope this helps, Do reward.

Edited by: Runal Singh on Jan 23, 2008 6:33 PM

0 Kudos

How can we pass the session name to RSBDCSUB dynamically without user interaction???

Former Member
0 Kudos

You can call program RSBDCSUB from within your ABAP:

submit RSBDCSUB

and pass variables : eg. session name, creation date, session status....

Former Member
0 Kudos

You can submit the program RSBDCSUB in the program where you have created the BDC session.

submit rsbdcsub

with fehler = ' '

with von = ' '

with bis = ' '

with mappe = group

with z_verab = 'X'

user sy-uname via job jobname number jobcount and return.

Regards,

Madhavi

former_member214131
Active Contributor
0 Kudos

Hi,

To process a specific Session with the same session name:

Hope this helps.

Best Regards, Murugesh