<?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 Value to a Temp. Variable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282605#M153095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am want to  Import a value to a temp. variable.&lt;/P&gt;&lt;P&gt;Is this possible with  &lt;/P&gt;&lt;P&gt;IMPORT Ztable-field1  FROM MEMORY ID 'id1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to directly import the value to temp. varibale in the import statement it slef.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way &lt;/P&gt;&lt;P&gt;temp_var = ztable-field1, after import statement is working for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Apr 2006 06:11:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-14T06:11:20Z</dc:date>
    <item>
      <title>Import Value to a Temp. Variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282605#M153095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am want to  Import a value to a temp. variable.&lt;/P&gt;&lt;P&gt;Is this possible with  &lt;/P&gt;&lt;P&gt;IMPORT Ztable-field1  FROM MEMORY ID 'id1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to directly import the value to temp. varibale in the import statement it slef.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way &lt;/P&gt;&lt;P&gt;temp_var = ztable-field1, after import statement is working for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Apr 2006 06:11:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282605#M153095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-14T06:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Import Value to a Temp. Variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282606#M153096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Irfan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name of the variable exported should the same name you are importing. So if you have exported a TEMP variable then you can import the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, reassign like that way you are doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Apr 2006 06:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282606#M153096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-14T06:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Import Value to a Temp. Variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282607#M153097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Import two fields and an internal table from the application buffer with the structure INDX: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ITAB3_LINE, &lt;/P&gt;&lt;P&gt;         CONT(4), &lt;/P&gt;&lt;P&gt;       END OF ITAB3_LINE. &lt;/P&gt;&lt;P&gt;DATA: INDXKEY LIKE INDX-SRTFD VALUE 'KEYVALUE', &lt;/P&gt;&lt;P&gt;      F1(4), &lt;/P&gt;&lt;P&gt;      F2(8) TYPE P DECIMALS 0, &lt;/P&gt;&lt;P&gt;      ITAB3 TYPE STANDARD TABLE OF ITAB3_LINE, &lt;/P&gt;&lt;P&gt;      INDX_WA TYPE INDX. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Import data. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORT F1 = F1 F2 = F2 ITAB3 = ITAB3 &lt;/P&gt;&lt;P&gt;       FROM SHARED BUFFER INDX(ST) ID INDXKEY TO INDX_WA. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;After import, the data fields INDX-AEDAT and &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INDX-USERA in front of CLUSTR are filled with &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the values in the fields before the EXPORT &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;statement.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Apr 2006 06:27:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-value-to-a-temp-variable/m-p/1282607#M153097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-14T06:27:55Z</dc:date>
    </item>
  </channel>
</rss>

