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

Processing BDC session from Report

Former Member
0 Likes
723

Dear All,

I have got requirement where I have to process the session without going to SM35 tcode. I have to process from ABAP Report. Is there any possibility to do this.If Yes, Please let me know.

Its Urgent Please..

Thanks in Advance,

Nagesh Aswartha Varma

4 REPLIES 4
Read only

Former Member
0 Likes
613

Aswartha,

You can dynamically schedule a job.

Use the function module

JOB_OPEN, JOB_CLOSE and JOB_SUBMIT.

Regards,

Ravi

Note : Please reward points, if this helps you.

Read only

Former Member
0 Likes
613

Hi Aswrtha,

You can use report RSBDCSUB to schedule sessions to be processed in background.

Once you have create your session <GROUP> , put this line -

SUBMIT RSBDCSUB WITH MAPPE = <GROUP> .

( <GROUP> is the name of session you created ).

Dont forget to reward if amswers were helpful.

Cheers

Read only

0 Likes
613

And make sure to keep some parameters like GROUP, KEEP in your report selection screen from where you can control the BDC session.

Thanks,

Sougata.

Read only

Former Member
0 Likes
613

Hi,

Try this -

SUBMIT rsbdcsub USING SELECTION-SET 'ZXY' and return.

where ZXY is variant which you have to create for RSBDCSUB program by giving session name and click on new session checkbox.

Thanks,

Rajeev