ERP Database - The Unofficial ERP Knowledge Base

Facebook Twitter del.icio.us Digg it
ERP Database contains a huge collection of articles related to ERP System and Software. Many of the articles are specifically related to SAP. All these ERP/SAP articles are freely available to everyone.

If you would like to submit an article or share any document related to ERP or any specific ERP software. Please mail it to support@erpdb.info. Please make sure that the documents are not copyrighted.
Social Bookmarks:

ABAP Memory

Print This Post Email This Post Written by admin on May 27th, 2008 | Filed under: ABAP

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.

Share

If you like this post, you may as well like these too:

  1. 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....
  2. 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...
  3. 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