<?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: GET PARAMETER ID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755092#M327216</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my problem is not with the p_ebeln,&lt;/P&gt;&lt;P&gt;my problem is that if i need to get the data:&lt;/P&gt;&lt;P&gt;get parameter id 'VRT' field p_ebeln.&lt;/P&gt;&lt;P&gt;he doesnt even get there because he stock with the 'bes' because it remember the last time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to get free from memory the parameter id 'BES' and 'VRT'&lt;/P&gt;&lt;P&gt;when i finish ranning my program?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;dana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Dec 2006 09:17:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-27T09:17:10Z</dc:date>
    <item>
      <title>GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755088#M327212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I have smartforms for 2 transaction: me9k,me9f.&lt;/P&gt;&lt;P&gt;i wrote in my program:&lt;/P&gt;&lt;P&gt;Get parameter id 'BES' field p_ebeln.&lt;/P&gt;&lt;P&gt;if p_ebeln is initial.&lt;/P&gt;&lt;P&gt;Get parameter id 'VRT' field p_ebeln.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem is that if one time we got parameter id from 'BES'  and the second time i want to get parameter id from 'VRT' &lt;/P&gt;&lt;P&gt;it remember the first time and doesnt get data from 'VRT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to set free the parameter id - that when i ran my program for the second time - it wont remember the data from the first time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;dana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755088#M327212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755089#M327213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_ebeln &amp;lt;&amp;gt; space.&lt;/P&gt;&lt;P&gt;    Get parameter id 'BES' field p_ebeln.&lt;/P&gt;&lt;P&gt;elseif p_ebeln = space.&lt;/P&gt;&lt;P&gt;    Get parameter id 'VRT' field p_ebeln.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755089#M327213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755090#M327214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;  Why dont you check SY-SUBRC after Get parameter id 'BES' field p_ebeln.&lt;/P&gt;&lt;P&gt;So if some value is retrieved from the starement you can proceed with it else clear the value of p_ebeln.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;Get parameter id 'BES' field p_ebeln.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;clear p_ebeln.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;In case this does not serve the purpose please do revert back&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755090#M327214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755091#M327215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do this:&lt;/P&gt;&lt;P&gt;Get parameter id 'BES' field p_ebeln.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;set parameter id 'BES' field space.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;if p_ebeln is initial.&lt;/P&gt;&lt;P&gt;Get parameter id 'VRT' field p_ebeln.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&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, 27 Dec 2006 09:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755091#M327215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755092#M327216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my problem is not with the p_ebeln,&lt;/P&gt;&lt;P&gt;my problem is that if i need to get the data:&lt;/P&gt;&lt;P&gt;get parameter id 'VRT' field p_ebeln.&lt;/P&gt;&lt;P&gt;he doesnt even get there because he stock with the 'bes' because it remember the last time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to get free from memory the parameter id 'BES' and 'VRT'&lt;/P&gt;&lt;P&gt;when i finish ranning my program?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;dana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755092#M327216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755093#M327217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  If that is what you want then at end of your program , you need to use the SET PARAMETER command to assign  blank or space as values to these memory ids.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755093#M327217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755094#M327218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a strange result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i ran the program first time - everything ok.&lt;/P&gt;&lt;P&gt;when i ran the second time with the same order -he give me parameter id blanck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is anyone know how to help me?&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;P&gt;dana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755094#M327218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: GET PARAMETER ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755095#M327219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt; It is becuse we are setting the value as blank at the end of the program .&lt;/P&gt;&lt;P&gt; there is a concept called Static variables , it is basically a local varaible which retails the value when it was called last time , but please do rem this is applicable if it is in the same context.&lt;/P&gt;&lt;P&gt;Try using it&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;aRUN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Arun R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-parameter-id/m-p/1755095#M327219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:22:11Z</dc:date>
    </item>
  </channel>
</rss>

