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 With Job_open, Job_commit,Job_close

Former Member
0 Kudos

Hi can any one tell i have developed a BDC session program.

i dont want to run the session by going to transaction SM35

can i use job_open,job_commit and job_close function modules after bdc_close_group.

thanks,

Srinu.

4 REPLIES 4

Former Member
0 Kudos

Use RSBDCSUB program.

After closing the session submit RSBDCSUB.

Regards

0 Kudos

how can we pass the session name into submit rsbdcsub

0 Kudos

Use below code,

SUBMIT rsbdcsub WITH mappe = l_mnam1
WITH von = sy-datum
WITH bis = sy-datum
EXPORTING LIST TO MEMORY

.

OR

SUBMIT rsbdcsub
           USING SELECTION-SET 'ZVariant'
           AND RETURN.

Regards

former_member186143
Active Contributor
0 Kudos

if you don't want to run it by hand (which is quite normal since most of the time developers are not allowed to make changes in production so the sollution is to create a batch input map which is run by a normal user )

otherwise you can schedule it with sm37 and it runs automaticaly

kind regards

arthur de smidt