<?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 import command in OO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310354#M1834667</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to import some tables in badi IF_EX_ CUSTOMER_ADD_DATA ~ CHECK_ALL DATE, to save some tables that I use the screens. I used the export code on the screens and badi in import command, but it seems the import field is not supported in OO. &lt;/P&gt;&lt;P&gt;Anyone know any way to pass these tables to badi?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jun 2014 18:42:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-06-06T18:42:35Z</dc:date>
    <item>
      <title>import command in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310354#M1834667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to import some tables in badi IF_EX_ CUSTOMER_ADD_DATA ~ CHECK_ALL DATE, to save some tables that I use the screens. I used the export code on the screens and badi in import command, but it seems the import field is not supported in OO. &lt;/P&gt;&lt;P&gt;Anyone know any way to pass these tables to badi?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2014 18:42:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310354#M1834667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-06T18:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: import command in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310355#M1834668</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;See if this can do the trick:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="108809" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Shared memory-Sharing Objects across Programs" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2014 19:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310355#M1834668</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-06-06T19:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: import command in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310356#M1834669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lucas, &lt;/P&gt;&lt;P&gt;Import &amp;amp; Export statements are supported in OO context! There is another syntax of Import &amp;amp; Export which allows to achieve the necessary i.e,&lt;/P&gt;&lt;P&gt;EXPORT &amp;lt;var&amp;gt; FROM &amp;lt;var&amp;gt;&lt;/P&gt;&lt;P&gt;TO MEMORY ID 'VAR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT &amp;lt;var&amp;gt; TO &amp;lt;var&amp;gt;&lt;/P&gt;&lt;P&gt;TO MEMORY ID 'VAR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as compared to earlier syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample Code &lt;/P&gt;&lt;P&gt;" Since a lot of internal tables would have been declared with OCCURS addition&lt;/P&gt;&lt;P&gt;" we can declare our own internal table and pass it along for IMPORT. &lt;/P&gt;&lt;P&gt;DATA: IT_EXPORT TYPE STANDARD TABLE OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DELETE FROM MEMORY ID 'IT_EXPORT'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IT_EXPORT[] = ITAB[]. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORT IT_EXPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM IT_EXPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO MEMORY ID 'IT_EXPORT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Calling Program you can write -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" Please note here your structure for IT_IMPORT should be same as IT_EXPORT.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IMPORT IT_EXPORT &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO IT_IMPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM MEMORY ID 'IT_EXPORT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2014 05:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-command-in-oo/m-p/10310356#M1834669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-07T05:44:42Z</dc:date>
    </item>
  </channel>
</rss>

