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 Memory & SAP Memory The memory area of each main session has an area called ABAP Memory, which the programs in the internal session can access with EXPORT TO MEMORY and IMPORT FROM MEMORY....
- 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 WITH...
- 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 OCCURS...



















Leave a Reply