<?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: How to clear SAP Memory set using SET PARAMETER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432241#M1739299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Really only by debugging the code. If you go in the MODULE get_parameter which is called when you start TC COR3, then you see the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;MODULE GET_PARAMETER OUTPUT.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;CAUFVD-AUFNR &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;INITIAL.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;GET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'BR1' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;*CAUFVD-AUFNR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;*CAUFVD-AUFNR &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;INITIAL.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CAUFVD-AUFNR = *CAUFVD-AUFNR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;BR /&gt;&amp;nbsp; ENDIF.&lt;BR /&gt;&lt;BR /&gt;ENDMODULE.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S31"&gt;" GET_PARAMETER&amp;nbsp; OUTPUT&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;That made me realize that any parameter-id that needs to be set is BR1 and not ANR as you can find in F1 information on the screenfield. I honestly think this is a bug and SAP should repair it. The data element AUFNR has parameter-id ANR and I don't see the reason why SAP uses another one in this transaction.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 May 2013 15:01:02 GMT</pubDate>
    <dc:creator>PeterJonker</dc:creator>
    <dc:date>2013-05-22T15:01:02Z</dc:date>
    <item>
      <title>How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432230#M1739288</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;I know this is a repetitive question in SCN. But I couldn't resolve the issue using the solution already provided here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an ALV output, in which one field is for Process Order, which is shown as hyperlink.&lt;/P&gt;&lt;P&gt;When you click on any process order, it should call COR3 with the selected Process order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is always the first process order is getting displayed always.&lt;/P&gt;&lt;P&gt;i.e. I select order O1 and it goes to COR3 to display O1. If I come back and select O2, it goes to COR3 to display O1 again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the following code for this requirement.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_aufnr &lt;SPAN class="L0S55"&gt;= wa_final1&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;proc_order&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'ANR' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;v_aufnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TRANSACTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'COR3' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SKIP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIRST &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CLEAR &lt;/SPAN&gt;v_aufnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'ANR' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;v_aufnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 12:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432230#M1739288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T12:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432231#M1739289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe issue is with the way you get process order number from ALV.&lt;/P&gt;&lt;P&gt;No matter which line is clicked, first process order number gets set.&lt;/P&gt;&lt;P&gt;Put a breakpoint to confirm that when you click on line 3, process order of line 3 reaches v_aufnr or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After confirming this, you can focus on getting selected row index (cl_gui_alv_grid-&amp;gt;get_selected_rows if using classes), and fetching correct process order number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432231#M1739289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T14:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432232#M1739290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just curious because I have done this many times and never had this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been debugging and found out that after your statement parameter id BR1 is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if you change your code to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_aufnr &lt;SPAN class="L0S55"&gt;= wa_final1&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;proc_order&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;BR1&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S33"&gt;' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;v_aufnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TRANSACTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'COR3' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SKIP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIRST &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;don't clear anything here, not bnecessary&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432232#M1739290</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2013-05-22T14:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432233#M1739291</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;Hope you are populating the order number from the selected record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check in debugging if you are&amp;nbsp; able to see the second order being picked up during the set parameter execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also please check if you are looping again to read the order instead use read statement for the selected record for the right order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sriranjani Chimakurthy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432233#M1739291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T14:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432234#M1739292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Peter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution is working fine for me now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, do you know how you came across 'BR1' instead of 'ANR' , as I could see only 'ANR' if I goto COR3 and press F1 on Order number ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432234#M1739292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T14:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432235#M1739293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&lt;/SPAN&gt;BR1&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S33"&gt;'&amp;nbsp; in stead of &lt;SPAN class="L0S33"&gt;'ANR' &lt;/SPAN&gt; WILL work. I created a test program and it works perfect.&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:39:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432235#M1739293</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2013-05-22T14:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432236#M1739294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understood what you are saying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, how did you come to know that the parameter id 'BR1' is for AUFNR field for COR3 transaction ?&lt;/P&gt;&lt;P&gt;In which table,we can find the linkage between the field and the parameter id ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I searched in DD04L table, but couldn't get the entry for parameter id 'BR1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:45:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432236#M1739294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T14:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432237#M1739295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;How did you code read of the selected line record in your ALV (user_command, event HOTSPOT_CLICK or ?)&lt;/LI&gt;&lt;LI&gt;How did you find that the memory id is ANR, yes this is the default for the data element, alas for some transactions related to Process Order Number, it is also BR1 (*)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(*) A&lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps alt-edited"&gt;ssumed that &lt;/SPAN&gt;&lt;/SPAN&gt;ANR also can be checked but only if BR1 is initial, so first time you set ANR, and COR3 will set BR1, and during following calls; COR3 will only read BR1, let you test...&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432237#M1739295</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-05-22T14:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432238#M1739296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I created a small program in which I select a few process orders, display in alv and implement method handle_doubleclick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the same parameter-id as you did and set a breakpoint at statement set parameter id.&lt;/P&gt;&lt;P&gt;The after that I go in debugging in COR3 and in the PBO event for the first screen, the first perform is called: MODULE get_parameter. And when you go in there......well try out and you will see.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:48:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432238#M1739296</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2013-05-22T14:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432239#M1739297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- I used HOTSPOT_CLICK event to do the processing . I use the OO ALV method for the same.&lt;/P&gt;&lt;P&gt;- I found out that the parameter id is ANR, by pressing F1 at Order number in COR3 and proceeded &lt;/P&gt;&lt;P&gt;&amp;nbsp; by setting it in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was not aware of this Parameter id 'BR1'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would definitely be interested to know if there is some place where we link BR1 and Process order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432239#M1739297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T14:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432240#M1739298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not in ddic, code in first module in the PBO of the initial screen of transaction (SE93 -&amp;gt; double-click on dynpro, double-click on first module)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 15:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432240#M1739298</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-05-22T15:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432241#M1739299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Really only by debugging the code. If you go in the MODULE get_parameter which is called when you start TC COR3, then you see the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;MODULE GET_PARAMETER OUTPUT.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;CAUFVD-AUFNR &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;INITIAL.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;GET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'BR1' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;*CAUFVD-AUFNR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;*CAUFVD-AUFNR &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;INITIAL.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CAUFVD-AUFNR = *CAUFVD-AUFNR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;BR /&gt;&amp;nbsp; ENDIF.&lt;BR /&gt;&lt;BR /&gt;ENDMODULE.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S31"&gt;" GET_PARAMETER&amp;nbsp; OUTPUT&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;That made me realize that any parameter-id that needs to be set is BR1 and not ANR as you can find in F1 information on the screenfield. I honestly think this is a bug and SAP should repair it. The data element AUFNR has parameter-id ANR and I don't see the reason why SAP uses another one in this transaction.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 15:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432241#M1739299</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2013-05-22T15:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432242#M1739300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just set it to space. A workaround.&lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro jive_macro_emoticon jive_emote" src="https://community.sap.com/1474/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'ANR' FIELD space.&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;Manu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 15:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432242#M1739300</guid>
      <dc:creator>manukapur</dc:creator>
      <dc:date>2013-05-22T15:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432243#M1739301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;FREE is for clearing up memory occupied by internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;DELETE from memory ID is to clear data from SAP memory (Parameter ID's)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Syntax&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;FREE MEMORY ID id.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Effect&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;This statement has the same effect as the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;DELETE FROM MEMORY ID id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 16:05:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432243#M1739301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-22T16:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432244#M1739302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alas PARAMETER ID can be used in Abap statement, so you can not always find the information in ddic nor in dynpro field definition but in module of the program. So usually I look at initial transaction dynpro for modules with names like 'INIT_TRANSACTION' or 'GET_PARAMETER'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, small list of tricks than can do the job&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Modules of the transaction initial dynpro (here module "get_parameter" in SAPLCOKO / 5110)&lt;/LI&gt;&lt;LI&gt;Start transaction in debug mode with Watchpoints defined on the required dynpro field.&lt;/LI&gt;&lt;LI&gt;Perform Where Used on the transaction (here you could find transaction that use BR1 or BR1 and ANR or small BDC, but you could also&amp;nbsp; find some standard transactions that only use ANR and got in the same trouble before a note corrected them)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 07:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432244#M1739302</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-05-23T07:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear SAP Memory set using SET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432245#M1739303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, thank you for the information about the BR1 value, instead of ANR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I'm trying to call the IW39 transaction, but there is a field called "Period", which refers to Dates "DATUV" and "DATUB".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These dates are filled when the transaction starts, and they don't have any PARAMETER ID defined by SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is, how could I erase those values from this transaction, so I can see the Maintenance Order correctly? Right now, the transaction is telling me that there are no orders, but it's because of the dates.&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;Greetings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Teresa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 20:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-clear-sap-memory-set-using-set-parameter/m-p/9432245#M1739303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-15T20:37:04Z</dc:date>
    </item>
  </channel>
</rss>

