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: 

Submit BDC to process in background automatically

Former Member
0 Kudos

How would I automtacally have my BDC session to process in the background and complete it without going through SM35 to process in the background.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Please check this sample code.

SUBMIT rsbdcsub AND RETURN

EXPORTING LIST TO MEMORY

WITH mappe = p_sessionnanme

WITH von = w_datum

WITH bis = sy-datum

WITH z_verarb = c_true

WITH fehler = c_false.

2 REPLIES 2

Former Member
0 Kudos

Please check this sample code.

SUBMIT rsbdcsub AND RETURN

EXPORTING LIST TO MEMORY

WITH mappe = p_sessionnanme

WITH von = w_datum

WITH bis = sy-datum

WITH z_verarb = c_true

WITH fehler = c_false.

Former Member
0 Kudos

U can do it via RSBDCSUB.

submit RSBDCSUB via selection-screen with mappe = <session name>

z_verarb = 'X'

fehler = 'X'.