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

reg: BDC

Former Member
0 Likes
408

hi,

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

hi,

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

2 REPLIES 2
Read only

FredericGirod
Active Contributor
0 Likes
386

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

Read only

Former Member
0 Likes
386

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.