<?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 to memory.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813920#M917302</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;write in the &lt;STRONG&gt;initialization&lt;/STRONG&gt; if it's a report.&lt;/P&gt;&lt;P&gt;write in &lt;STRONG&gt;PBO&lt;/STRONG&gt; if it is Module pool programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 May 2008 08:11:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-21T08:11:23Z</dc:date>
    <item>
      <title>EXPORT to memory..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813918#M917300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to export the vlaue to memory before the selection screen is displayed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : lv_obtyp TYPE jsto-obtyp.&lt;/P&gt;&lt;P&gt;  lv_obtyp = 'QMI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXPORT lv_obtyp TO MEMORY ID 'PM_OBTYP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wher can i put this piece of code so tat the value is in memory before the selection screen is displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 08:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813918#M917300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T08:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT to memory..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813919#M917301</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;Write this code at the beginning of the report at the event INITIALIZATION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event keyword defines an event block whose event is triggered by the ABAP runtime environment during the flow of an executable program, directly after LOAD-OF-PROGRAM and before the selection screen processing of any existing standard selection screen. This gives you the one-time opportunity to initialize the input fields of the selection screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shruthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 08:11:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813919#M917301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T08:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT to memory..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813920#M917302</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;write in the &lt;STRONG&gt;initialization&lt;/STRONG&gt; if it's a report.&lt;/P&gt;&lt;P&gt;write in &lt;STRONG&gt;PBO&lt;/STRONG&gt; if it is Module pool programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 08:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813920#M917302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T08:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT to memory..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813921#M917303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;Put this piece of code in INITIALIZATION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION&lt;/P&gt;&lt;P&gt;lv_obtyp = 'QMI'.&lt;/P&gt;&lt;P&gt;EXPORT lv_obtyp TO MEMORY ID 'PM_OBTYP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use constant insteead of variable. If u want variable then in data declaration u can assign initial value&lt;/P&gt;&lt;P&gt;DATA: lv_obtyp TYPE jsto-obtyp VALUE ''QMI'.&lt;/P&gt;&lt;P&gt;So nee need of one more assignment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what are u going to do with this data by exporting to memory ID?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 08:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813921#M917303</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-21T08:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT to memory..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813922#M917304</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;put it into the LOAD-OF-PROGRAM event!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 08:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813922#M917304</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-05-21T08:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT to memory..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813923#M917305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write the code in Initialization event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 08:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-to-memory/m-p/3813923#M917305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T08:13:04Z</dc:date>
    </item>
  </channel>
</rss>

