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: 

reg: BDC

Former Member
0 Kudos

hi,

what is rsbdcsub in session method and what is exporting list to memory?

2 REPLIES 2

FredericGirod
Active Contributor
0 Kudos

RSBDCSUB is a program, it could be called after a BDC creation to execute the BDC.

Former Member
0 Kudos

Standard Program RSBDCSUB is used to Sumbit BDC Session program in Background Automatically.


SUBMIT rsbdcsub WITH mappe = p_sesion(your session name)
WITH von = sy-datum
WITH bis = sy-datum
WITH z_verarb = 'X' AND RETURN.

There is an addition for the ABAP statement SUBMIT, with which you can "store" the list output generated in SAP Memory


SUBMIT...
  EXPORTING LIST TO MEMORY

Afterwards you can retrieve the list output, which was EXPORTed TO MEMORY, back using FM LIST_FROM_MEMORY.

Reward points if useful.