<?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: access internal table or variable from another program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204536#M763918</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;Did you try Submit and Return or Submit exporting List to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this is of help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Dec 2007 13:54:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-07T13:54:56Z</dc:date>
    <item>
      <title>access internal table or variable from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204533#M763915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am doing a submit program to RM06EANL. is there a way i can access one of the internal tables or variables that is populated inside the program RM06EANL and use it in my program? how can i do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me on this.&lt;/P&gt;&lt;P&gt;thanks..:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-march-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204533#M763915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T13:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: access internal table or variable from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204534#M763916</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;It can read a variable of other program in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&amp;lt;PROGRAM NAME&amp;gt;)&amp;lt;VARIABLE&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can use the field-symbols, so in your case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:  &amp;lt;ITAB&amp;gt; TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN '(RM06EANL)ITAB[]' TO &amp;lt;ITAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I don't believe you can use this trick because after ending the submit statament the system should clear all memory used by called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:33:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204534#M763916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T13:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: access internal table or variable from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204535#M763917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how will i use these in my codes?&lt;/P&gt;&lt;P&gt;i have tried but an error message appears "...type-incompatible"&lt;/P&gt;&lt;P&gt;please advise me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..:-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204535#M763917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T13:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: access internal table or variable from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204536#M763918</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;Did you try Submit and Return or Submit exporting List to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this is of help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:54:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204536#M763918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T13:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: access internal table or variable from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204537#M763919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi lalit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i have tried that but i can't still access the internal table from the submit program..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204537#M763919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T13:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: access internal table or variable from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204538#M763920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you can directly achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can copy  RM06EANL to ZRM06EANL. &lt;/P&gt;&lt;P&gt;Change program ZRM06EANL and put one export statement which can export your internal table to some memory id.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT ITAB TO MEMORY ID 'ZTEST123'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your main program:&lt;/P&gt;&lt;P&gt;- You need to Submit the ZRM06EANL program.&lt;/P&gt;&lt;P&gt;- Just after the SUMBIT ZRM06EANL AND RETURN statment, IMPORT the exported data.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT ZRM06EANL AND RETURN.
IMPORT ITAB FROM MEMORY ID 'ZTEST123'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 14:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/access-internal-table-or-variable-from-another-program/m-p/3204538#M763920</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-12-07T14:32:11Z</dc:date>
    </item>
  </channel>
</rss>

