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

how to execute the session and process the session in same t.code.

Former Member
0 Likes
594

Hi,

I want to execute the program and as well as process the session in SE 38 only. I dont want to in SM35 for process session.

Thanks and Regards,

Sunil Kumar.T

3 REPLIES 3
Read only

Former Member
0 Likes
542

Hi Shiva,

You can u program RSBDCSUB

u need to submit the control to this program like this

SUBMIT rsbdcsub WITH mappe EQ p_group
                  WITH von EQ sy-datum
                  WITH bis EQ sy-datum
                  WITH fehler EQ '.'
                  EXPORTING LIST TO MEMORY
                  AND RETURN.

Hope this helps...

Best regards,

raam

Read only

Former Member
0 Likes
542

Hi,

use the program RSBDCSUB to process the session.

submit RSBDCSUB with MAPPE = 'session' and return.

Regards

Kiran sURE

Read only

Former Member
0 Likes
542

hi

for processing the session with in the program use rsbdcsub or rsbdcbtc.

example:

SUBMIT RSBDCSUB

WITH MAPPE = 'XK01' (here specify the session name)

WITH VON = SY-DATUM

WITH Z_VERARB = 'X'

WITH ERR = 'X'

WITH LOGALL = 'X'

AND RETURN EXPORTING LIST TO MEMORY.

for rsbdcbtc go through the follwing link

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/bdc%2bsession%2b-%2bautomatic%2bexecution%2b...