<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: passing internal table to global memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753990#M326834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you were asking for Global, please go through the below info from documentaion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... = f (for each field to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... FROM f (for each field to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... CLIENT g (before ID key ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. ... USING form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. ... FROM wa (after ID key or dbtab(ar)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. ... COMPRESSION ON/OFF (as the last addition) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. ... CODE PAGE HINT g (for internal use only) ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Cannot Use Implicit Field Names in Clusters and Cannot Use Table Work Areas. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Exports a data cluster to the database table dbtab. The objects specified, obj1 ... objn (fields, structures, or tables) are stored as a cluster in the database table dbtab. &lt;/P&gt;&lt;P&gt;The database table dbtab specified must have a standardized structure. &lt;/P&gt;&lt;P&gt;The database table dbtab is divided into different logically related areas (ar, 2-character name). &lt;/P&gt;&lt;P&gt;You can export collections of data objects (known as data clusters) under a freely definable key (field key) to an area of this database. &lt;/P&gt;&lt;P&gt;IMPORT allows you to import individual data objects from this cluster. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;You must enter an explicit name for the exported data objects in classes - that is, either addition 1 or addition 2 is mandatory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must also enter the work area explicitly in classes - that is, addition 5 is mandatory. &lt;/P&gt;&lt;P&gt;The table dbtab specified after DATABASE must be declared under TABLES (except in addition 5). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The header lines of internal tables cannot be exported because specifying the name of an internal table with a header line always exports the actual table data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data is stored in the database. The operation is only irrevocable after a database commit (see LUW). Prior to this, any database update can be reversed by a database rollback (see Programming Transactions). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key must be a character-type data object (but not a string). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Export two fields and an internal table to the database table INDX: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ITAB3_TYPE, &lt;/P&gt;&lt;P&gt;          CONT(4), &lt;/P&gt;&lt;P&gt;       END OF ITAB3_TYPE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: INDXKEY LIKE INDX-SRTFD VALUE 'KEYVALUE', &lt;/P&gt;&lt;P&gt;      ITAB3 TYPE STANDARD TABLE OF ITAB3_TYPE WITH NON-UNIQUE &lt;/P&gt;&lt;P&gt;                 DEFAULT KEY INITIAL SIZE 2, &lt;/P&gt;&lt;P&gt;      WA_INDX TYPE INDX. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Before the export, fill the data &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fields before CLUSTR. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_INDX-AEDAT = SY-DATUM. &lt;/P&gt;&lt;P&gt;WA_INDX-USERA = SY-UNAME. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Export data. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXPORT F1    FROM F1 &lt;/P&gt;&lt;P&gt;       F2    FROM F2 &lt;/P&gt;&lt;P&gt;       ITAB3 FROM ITAB3 &lt;/P&gt;&lt;P&gt;       TO DATABASE INDX(ST)  FROM WA_INDX ID INDXKEY. &lt;/P&gt;&lt;P&gt;       DATABASE INDX(ST) ID INDXKEY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... = f (for each object to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Exports the contents of the field f and stores them under the specified name in the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... FROM f (for each object to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Exports the contents of the field f and stores them under the specified name in the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... CLIENT g (after dbtab(ar)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Stores the data objects in the client g (if the import/export database table dbtab is client-specific). The client g must be a character-type data object (but not a string). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 4 &lt;/P&gt;&lt;P&gt;... USING form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;This statement is for internal use only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incompatible changes or further developments may occur at any time without warning or notice. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Does not export the data to the database table. Instead, calls the FORM routine form for every record written to the database without this addition. The name of the routine has the format &amp;lt;name of database table&amp;gt;_&amp;lt;name of form&amp;gt;. The routine can take the data from the work area of the database table; it has a parameter, which describes the operation mode (READ, UPDATE or INSERT). The routine must set the field SY-SUBRC in order to show whether the function was successfully performed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Dec 2006 08:11:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-15T08:11:13Z</dc:date>
    <item>
      <title>passing internal table to global memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753986#M326830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to pass internal table to global memory and how to retrieve internal table from global memory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 07:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753986#M326830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T07:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: passing internal table to global memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753987#M326831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the EXPORT and IMPORT Commands.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* How to pass 
export I_TAB1 to memory id 'ZTAB1'.
* how to retrieve 
import I_TAB1 from memory id 'ZTAB1'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kathirvel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 07:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753987#M326831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T07:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: passing internal table to global memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753988#M326832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For this u have to have the declare the internal table with the same name and structure at both the places from where ur EXPORTING and where ur IMPORTING the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the commands&lt;/P&gt;&lt;P&gt;EXPORT &amp;lt;itab&amp;gt; TO MEMORY ID &amp;lt;id&amp;gt;.&lt;/P&gt;&lt;P&gt;IMPORT &amp;lt;itab&amp;gt; FROM MEMORY ID &amp;lt;id&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Elan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 07:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753988#M326832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T07:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: passing internal table to global memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753989#M326833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter , &lt;/P&gt;&lt;P&gt;  You can use the EXPORT to memory and IMPORT.. command.&lt;/P&gt;&lt;P&gt;Here is the standrard help given for the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF OBJ_LINE, 
         CLUSTERNAME(30), 
         PROGRAMNAME(10), 
       END OF OBJ_LINE. 

DATA: OBJ_TAB TYPE STANDARD TABLE OF OBJ_LINE, 

      OBJ_WA  TYPE OBJ_LINE. 

TYPES: BEGIN OF B_LINE, 
         FIELD_1    TYPE I, 
         FIELD_2(1) TYPE N, 
       END OF B_LINE. 

DATA: B_PROG TYPE STANDARD TABLE OF B_LINE. 

DATA: A(10), 
      C_PROG LIKE SYST. 

MOVE:  'A'      TO OBJ_WA-CLUSTERNAME. 
APPEND OBJ_WA TO OBJ_TAB. CLEAR OBJ_WA. 

MOVE:  'B'      TO OBJ_WA-CLUSTERNAME, 
       'B_PROG' TO OBJ_WA-PROGRAMNAME. 
APPEND OBJ_WA TO OBJ_TAB. CLEAR OBJ_WA. 

MOVE:  'C'      TO OBJ_WA-CLUSTERNAME, 
       'C_PROG' TO OBJ_WA-PROGRAMNAME. 
APPEND OBJ_WA TO OBJ_TAB. CLEAR OBJ_WA. 

EXPORT (OBJ_TAB) TO MEMORY ID 'ABCD'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In the same way the import command would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT (OBJ_TAB) FROM MEMORY ID 'ABCD'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 07:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753989#M326833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T07:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: passing internal table to global memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753990#M326834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you were asking for Global, please go through the below info from documentaion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... = f (for each field to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... FROM f (for each field to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... CLIENT g (before ID key ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. ... USING form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. ... FROM wa (after ID key or dbtab(ar)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. ... COMPRESSION ON/OFF (as the last addition) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. ... CODE PAGE HINT g (for internal use only) ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Cannot Use Implicit Field Names in Clusters and Cannot Use Table Work Areas. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Exports a data cluster to the database table dbtab. The objects specified, obj1 ... objn (fields, structures, or tables) are stored as a cluster in the database table dbtab. &lt;/P&gt;&lt;P&gt;The database table dbtab specified must have a standardized structure. &lt;/P&gt;&lt;P&gt;The database table dbtab is divided into different logically related areas (ar, 2-character name). &lt;/P&gt;&lt;P&gt;You can export collections of data objects (known as data clusters) under a freely definable key (field key) to an area of this database. &lt;/P&gt;&lt;P&gt;IMPORT allows you to import individual data objects from this cluster. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;You must enter an explicit name for the exported data objects in classes - that is, either addition 1 or addition 2 is mandatory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must also enter the work area explicitly in classes - that is, addition 5 is mandatory. &lt;/P&gt;&lt;P&gt;The table dbtab specified after DATABASE must be declared under TABLES (except in addition 5). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The header lines of internal tables cannot be exported because specifying the name of an internal table with a header line always exports the actual table data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data is stored in the database. The operation is only irrevocable after a database commit (see LUW). Prior to this, any database update can be reversed by a database rollback (see Programming Transactions). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key must be a character-type data object (but not a string). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Export two fields and an internal table to the database table INDX: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ITAB3_TYPE, &lt;/P&gt;&lt;P&gt;          CONT(4), &lt;/P&gt;&lt;P&gt;       END OF ITAB3_TYPE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: INDXKEY LIKE INDX-SRTFD VALUE 'KEYVALUE', &lt;/P&gt;&lt;P&gt;      ITAB3 TYPE STANDARD TABLE OF ITAB3_TYPE WITH NON-UNIQUE &lt;/P&gt;&lt;P&gt;                 DEFAULT KEY INITIAL SIZE 2, &lt;/P&gt;&lt;P&gt;      WA_INDX TYPE INDX. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Before the export, fill the data &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fields before CLUSTR. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_INDX-AEDAT = SY-DATUM. &lt;/P&gt;&lt;P&gt;WA_INDX-USERA = SY-UNAME. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Export data. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXPORT F1    FROM F1 &lt;/P&gt;&lt;P&gt;       F2    FROM F2 &lt;/P&gt;&lt;P&gt;       ITAB3 FROM ITAB3 &lt;/P&gt;&lt;P&gt;       TO DATABASE INDX(ST)  FROM WA_INDX ID INDXKEY. &lt;/P&gt;&lt;P&gt;       DATABASE INDX(ST) ID INDXKEY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... = f (for each object to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Exports the contents of the field f and stores them under the specified name in the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... FROM f (for each object to be exported) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Exports the contents of the field f and stores them under the specified name in the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... CLIENT g (after dbtab(ar)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Stores the data objects in the client g (if the import/export database table dbtab is client-specific). The client g must be a character-type data object (but not a string). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 4 &lt;/P&gt;&lt;P&gt;... USING form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;This statement is for internal use only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incompatible changes or further developments may occur at any time without warning or notice. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Does not export the data to the database table. Instead, calls the FORM routine form for every record written to the database without this addition. The name of the routine has the format &amp;lt;name of database table&amp;gt;_&amp;lt;name of form&amp;gt;. The routine can take the data from the work area of the database table; it has a parameter, which describes the operation mode (READ, UPDATE or INSERT). The routine must set the field SY-SUBRC in order to show whether the function was successfully performed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 08:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753990#M326834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T08:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: passing internal table to global memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753991#M326835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export &amp;lt;internal table&amp;gt; to memory id &amp;lt;id&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import &amp;lt;internal table&amp;gt; from memory id &amp;lt;id&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shehryar Dahar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2006 08:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-to-global-memory/m-p/1753991#M326835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-15T08:21:50Z</dc:date>
    </item>
  </channel>
</rss>

