<?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 and export statements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722399#M315212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to use import and export statements in two different programs . The control from one program goes to another program with the function modules they have . I dont see the value while importing.&lt;/P&gt;&lt;P&gt;export i_field1 to memory id 'bus_ind'&lt;/P&gt;&lt;P&gt;import val1 to memory id 'bus_ind'&lt;/P&gt;&lt;P&gt;i gave only the memory id as common name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Nov 2006 13:36:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-15T13:36:25Z</dc:date>
    <item>
      <title>import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722399#M315212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to use import and export statements in two different programs . The control from one program goes to another program with the function modules they have . I dont see the value while importing.&lt;/P&gt;&lt;P&gt;export i_field1 to memory id 'bus_ind'&lt;/P&gt;&lt;P&gt;import val1 to memory id 'bus_ind'&lt;/P&gt;&lt;P&gt;i gave only the memory id as common name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:36:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722399#M315212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722400#M315213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyanka,&lt;/P&gt;&lt;P&gt;  Try to use Capital letters for the memory id and check.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722400#M315213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722401#M315214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use as&lt;/P&gt;&lt;P&gt;export i_field1 to memory id 'BUS_IND'&lt;/P&gt;&lt;P&gt;import val1 from memory id 'BUS_IND'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722401#M315214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722402#M315215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make sure that the variables used are the same name and defined exactly the same in both programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;export i_field1 = i_field1  to memory id 'BUS_IND'.
import i_field1 = i_field1  to memory id 'BUS_IND'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 14:00:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722402#M315215</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-15T14:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722403#M315216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BUSIND = I_ZMNETDTL-ZBUSINESS_IND.&lt;/P&gt;&lt;P&gt;EXPORT BUSIND TO MEMORY ID 'BANIN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT BUS_IND FROM MEMORY ID 'BAN'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;can i give like this ? i have to check this program in test and want to make sure before transporting. bus_ind are the local variables in two different function modules.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 14:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722403#M315216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T14:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722404#M315217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have declared both the variables as of same type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 14:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722404#M315217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T14:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722405#M315218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry i gave the same memory id too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 14:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722405#M315218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T14:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: import and export statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722406#M315219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is very important that the names of the variables are exactly the same and the type is the same.  Please use the syntax as I have provided above and make the names the same.  It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 14:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-statements/m-p/1722406#M315219</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-15T14:25:43Z</dc:date>
    </item>
  </channel>
</rss>

