ABAP Memory
Ever thought as to how to exchange the data between programs? well, that’s why we have ABAP Memory for.
EXPORT TO MEMORY ID <memory_id_ name> will copy the data to ABAP Memory and IMPORT FROM MEMORY ID <memory_id_ name> will copy the data from ABAP Memory. One import thing to note is that the data declarations and data types should be declared in both the programs and both of them must contain the same data type otherwise it will not work.
If you like this post, you may as well like these too:
- ABAP Programs: Importing from the ABAP/4 Memory REPORT ZSOURCE1402. * Internal tables which will be imported DATA: ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER LINE, ALL_BOOKINGS LIKE BOOKINGS OCCURS 10 WITH HEADER LINE, NEW_BOOKINGS LIKE BOOKINGS...
- ABAP Programs: Exporting to the ABAP/4 Memory REPORT ZSOURCE1401. * Work areas TABLES: CUSTOMERS, BOOKINGS. * Internal tables which will be exported DATA: ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER LINE, ALL_BOOKINGS LIKE BOOKINGS OCCURS 10...
- EXPORT : ABAP Keyword a day EXPORT *Export data - EXPORT obj1 ... objn TO MEMORY. - EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key. - EXPORT obj1 ... objn TO DATASET dsn(ar) ID...
- ABAP Programs: Classifying parameters REPORT ZSOURCE1005. * Data declarations for later useDATA: A1 TYPE P VALUE 2, A2 TYPE P VALUE 4, A3 TYPE P VALUE 8.* Calling a form with different parameter...
- Data Transport from ABAP to Screen and back Data Transport between screens and ABAP programs is automatically handled by the system. The First data transport occurs after all the PBO Modules have been executed and prior to...

















Leave a Reply