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

regardig session method

0 Likes
299

hi to all,

in session method how to run session with out going to SM 35.give some sample code.

psurendarreddy@gmail.com

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
282

Hi Suredarreddy,

Use RSBDCSUB to process a session automatically.

Check this code.

DATA v_groupid TYPE apqi-groupid.

V_GROUPID = SY-REPID.

After BDC_CLOSE in your code, write a statement as below

<b>SUBMIT rsbdcsub WITH mappe EQ v_groupid AND RETURN.</b>

Thanks,

Vinay

2 REPLIES 2
Read only

messier31
Active Contributor
0 Likes
282

Hi,

You may use this standard report <b>RSBDCSUB</b> as a reference for your program...

Enjoy SAP.

Pankaj Singh

Read only

Former Member
0 Likes
283

Hi Suredarreddy,

Use RSBDCSUB to process a session automatically.

Check this code.

DATA v_groupid TYPE apqi-groupid.

V_GROUPID = SY-REPID.

After BDC_CLOSE in your code, write a statement as below

<b>SUBMIT rsbdcsub WITH mappe EQ v_groupid AND RETURN.</b>

Thanks,

Vinay