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: 

Processing BDC session from Report

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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

0 Kudos

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.

Former Member
0 Kudos

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