<?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: SAP Memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760638#M1583601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abaperdaft,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure other programs don't change it after you, by adding a breakpoint at statement "SET PARAMETER" (use F9 key from the debugger to add this special kind of breakpoint).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover (1), is there a screen displayed (other than the ALV you mention) after you have set the parameter? (in that case, the SAP memory can be changed if there's an input field is linked to TKT as a SET parameter, or if there's a screen variant...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover (2), it could also be changed if you enter a screen in another mode of your SAPGUI, as the SAP memory is shared between all modes opened behind the same login.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 26 Mar 2011 18:37:32 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2011-03-26T18:37:32Z</dc:date>
    <item>
      <title>SAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760634#M1583597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Im having trouble clearing the sap memory. so far ive tried using&lt;/P&gt;&lt;P&gt;FREE MEMORY ID 'TKT'.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'TKT' FIELD SPACE.&lt;/P&gt;&lt;P&gt;DELETE FROM MEMORY ID 'TKT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all of this does not clear the memory at all when i get the memory again it should be empty but it still return the previous value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my current logic is i read the memory and calls screen 9000 and then when i press back i go back to the previous screen it reads the sap memory and there is previous data and it calls the screen 9000.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 19:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760634#M1583597</guid>
      <dc:creator>john_wayne</dc:creator>
      <dc:date>2011-03-25T19:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760635#M1583598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;z_clear = ''. (or any variable)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'TKT' FIELD z_clear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 21:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760635#M1583598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-25T21:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760636#M1583599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abaperdaft,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you made confusion in your attempts to clear the memory, because you tried to clear 2 kind of memories : SAP memory (statements SET and GET PARAMETER ID), and ABAP memory (statements containing "MEMORY ID").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess TKT is a SET-GET parameter as 3-letter names are often used for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, what you did (SET PARAMETER ID 'TKT' FIELD space) is correct : it doesn't delete the memory, but clears it. It's 99% of the time sufficient. You could really delete it (see how to delete it in note 62440 - Undo SET PARAMETER not possible), but I think this will not solve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you really sure that the program doesn't get the value from a database table, screen variant, etc.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 21:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760636#M1583599</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-03-25T21:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760637#M1583600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The value for the sap memory is populated when i click on the hotspot of the alv then i set the parameter for the sap memory. how come when i set it to space it does not actually sets it to space but still retains the previous value before setting to space?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2011 05:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760637#M1583600</guid>
      <dc:creator>john_wayne</dc:creator>
      <dc:date>2011-03-26T05:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760638#M1583601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abaperdaft,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure other programs don't change it after you, by adding a breakpoint at statement "SET PARAMETER" (use F9 key from the debugger to add this special kind of breakpoint).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover (1), is there a screen displayed (other than the ALV you mention) after you have set the parameter? (in that case, the SAP memory can be changed if there's an input field is linked to TKT as a SET parameter, or if there's a screen variant...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover (2), it could also be changed if you enter a screen in another mode of your SAPGUI, as the SAP memory is shared between all modes opened behind the same login.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2011 18:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-memory/m-p/7760638#M1583601</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-03-26T18:37:32Z</dc:date>
    </item>
  </channel>
</rss>

