<?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 Returning multiple internal tables from a called program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678172#M1449163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program A . it calls program B by using submit statement . There are mulriple internal table in program B .&lt;/P&gt;&lt;P&gt;I want to pass them to program A . Can I do it . If so please let me know how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rudra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Feb 2010 08:23:23 GMT</pubDate>
    <dc:creator>former_member195383</dc:creator>
    <dc:date>2010-02-25T08:23:23Z</dc:date>
    <item>
      <title>Returning multiple internal tables from a called program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678172#M1449163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program A . it calls program B by using submit statement . There are mulriple internal table in program B .&lt;/P&gt;&lt;P&gt;I want to pass them to program A . Can I do it . If so please let me know how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rudra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 08:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678172#M1449163</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2010-02-25T08:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Returning multiple internal tables from a called program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678173#M1449164</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;You can export those itab to memory ID in program B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When it come back to program A, after SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import those itabs to Program A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to maintain same structures of program B in Program A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use EXPORT, IMPORT statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 08:25:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678173#M1449164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-25T08:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Returning multiple internal tables from a called program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678174#M1449165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;EXPORT to memory ID memid and then import in your progam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't gorget to clear memory ID after successful import as seems you may put lot of load on session memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anurag_n on Feb 25, 2010 9:43 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 08:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678174#M1449165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-25T08:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Returning multiple internal tables from a called program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678175#M1449166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to do it with EXPORT and IMPORT to memory. But if these tables, you are mentioning, are too big - there can be a memory problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you have another possibility - make transparent table with delivery class L	Table for storing temporary data, delivered empty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and pass these data through this table. It can have problem specific structure or some kind of universal structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tablename char30
fieldname char30
fieldvalue char 1000&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vlado&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 08:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678175#M1449166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-25T08:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Returning multiple internal tables from a called program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678176#M1449167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, I am submitting a standard report in a Zprogram and want to access multiple internal tables of that &lt;/P&gt;&lt;P&gt;standard program inside the calling program.So is there any other way ..rather than using export import as it may cause performance issues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 09:29:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678176#M1449167</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2010-02-25T09:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Returning multiple internal tables from a called program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678177#M1449168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I`m afraid tha there is no other way how to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just these two methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will prefer export/import to abap memory if these tables are not really huge.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 09:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-multiple-internal-tables-from-a-called-program/m-p/6678177#M1449168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-25T09:39:34Z</dc:date>
    </item>
  </channel>
</rss>

