<?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 help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787093#M911073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: wa_zstatusa4 LIKE zstatusa4.&lt;/P&gt;&lt;P&gt;  DATA: f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_flag = '4'.&lt;/P&gt;&lt;P&gt;    MOVE v_flag TO zstatusa4-statusa4.&lt;/P&gt;&lt;P&gt;    MOVE v_flag TO wa_zstatusa4-statusa4.&lt;/P&gt;&lt;P&gt;    EXPORT f1 = f1 TO SHARED BUFFER zstatusa4(st) ID indxkey FROM&lt;/P&gt;&lt;P&gt;                                                           wa_zstatusa4.&lt;/P&gt;&lt;P&gt;can any one tell me the mening of the export and one more thing is f1 dont have any value in my code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 May 2008 10:51:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-08T10:51:51Z</dc:date>
    <item>
      <title>help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787093#M911073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: wa_zstatusa4 LIKE zstatusa4.&lt;/P&gt;&lt;P&gt;  DATA: f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_flag = '4'.&lt;/P&gt;&lt;P&gt;    MOVE v_flag TO zstatusa4-statusa4.&lt;/P&gt;&lt;P&gt;    MOVE v_flag TO wa_zstatusa4-statusa4.&lt;/P&gt;&lt;P&gt;    EXPORT f1 = f1 TO SHARED BUFFER zstatusa4(st) ID indxkey FROM&lt;/P&gt;&lt;P&gt;                                                           wa_zstatusa4.&lt;/P&gt;&lt;P&gt;can any one tell me the mening of the export and one more thing is f1 dont have any value in my code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2008 10:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787093#M911073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-08T10:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787094#M911074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT &amp;lt;f1&amp;gt; [FROM &amp;lt;g 1&amp;gt;] &amp;lt;f 2&amp;gt; [FROM &amp;lt;g 2&amp;gt;] ... TO MEMORY ID &amp;lt;key&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement stores the data objects specified in the list as a cluster in memory. If you do not use the option FROM &amp;lt;f i &amp;gt;, the data object &amp;lt;f i &amp;gt; is saved under its own name. If you use the FROM &amp;lt;g i &amp;gt; option, the data objet &amp;lt;g i &amp;gt; is saved under the name &amp;lt;f i &amp;gt;. The name &amp;lt;key&amp;gt; identifies the cluster in memory. It may be up to 32 characters long. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The EXPORT statement always completely overwrites the contents of any existing data cluster with the same name &amp;lt;key&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need to pass some value to F1 field.  Generally we populate the value into F1 and then we EXPORT it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bd1358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bd1358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2008 10:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787094#M911074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-08T10:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787095#M911075</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;Export means you are sending some value from the present place to the target. over here you are sending the value from abap memory to the shared memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you don't have any value in f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward some point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye,&lt;/P&gt;&lt;P&gt;anomitro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2008 10:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help/m-p/3787095#M911075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-08T10:56:15Z</dc:date>
    </item>
  </channel>
</rss>

