<?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: Export syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790217#M1309744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same parameters must be defined in both program. Sytax will be like below. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export &amp;lt;parameter&amp;gt; to memory id `XX`. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import &amp;lt;parameter&amp;gt; from memory id `XX`.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to give a unique memory ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Gungor Ozcelebi on Jun 29, 2009 3:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jun 2009 13:32:12 GMT</pubDate>
    <dc:creator>former_member194416</dc:creator>
    <dc:date>2009-06-29T13:32:12Z</dc:date>
    <item>
      <title>Export syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790216#M1309743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;   Hope you had a good weekend.&lt;/P&gt;&lt;P&gt;I'm trying to communicate two programs, in the sense, I'm calling an executable program from an other executable program using 'submit'.&lt;/P&gt;&lt;P&gt;Now my requirement is that, based on the return parameter of the called program the calling program has to behave differently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I thought of exporting a variable from the called program and importing the same variable in the calling program and based on that value, I can manipulate the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My only requirement now is can any one provide me with the synatx on how to export a variable(data x type c) from the called program and import the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short syntax for export and import to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all.&lt;/P&gt;&lt;P&gt;-Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2009 13:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790216#M1309743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-29T13:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Export syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790217#M1309744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same parameters must be defined in both program. Sytax will be like below. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export &amp;lt;parameter&amp;gt; to memory id `XX`. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import &amp;lt;parameter&amp;gt; from memory id `XX`.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to give a unique memory ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Gungor Ozcelebi on Jun 29, 2009 3:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2009 13:32:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790217#M1309744</guid>
      <dc:creator>former_member194416</dc:creator>
      <dc:date>2009-06-29T13:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Export syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790218#M1309745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Amith,
&amp;lt;li&amp;gt;In the Called program EXPORT statement has to be used to send the variable value to ABAP memory.
&lt;PRE&gt;&lt;CODE&gt;
EXPORT &amp;lt;field&amp;gt; TO MEMORY ID 'TOABAP'  "TOABAP is uniq memory id.&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;In the Calling program IMPORT statement has to be used to to get the value from ABAP memory.
&lt;PRE&gt;&lt;CODE&gt;IMPORT &amp;lt;field&amp;gt; FROM MEMORY ID 'TOABAP'  "TOABAP is uniq memory id.&lt;/CODE&gt;&lt;/PRE&gt;

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2009 13:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790218#M1309745</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-06-29T13:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790219#M1309746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Press F1 / Search the Google/SCN ..you get lot of posts on this.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2009 13:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-syntax/m-p/5790219#M1309746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-29T13:50:40Z</dc:date>
    </item>
  </channel>
</rss>

