<?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 UN-DATA command for local variables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375033#M8705</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I try to follow the programming paradigm, that the lifespan of variables should be kept as short as possible. I miss an UNDATA-statement to kill a local variable after use. It should make code much better: After you are done, the variable is killed. The variable name hereby becomes available for reuse.&lt;/P&gt;&lt;P&gt;This looks so simple to realize. Why does it not exist? Note, that my focus is &lt;EM&gt;not &lt;/EM&gt;on reducing memory, but to shorten the lifespan.&lt;/P&gt;&lt;P&gt;Any reply from the SAP ABAP-developers? Thank you in advance, / Ulrich&lt;/P&gt;</description>
    <pubDate>Mon, 28 Nov 2016 11:04:16 GMT</pubDate>
    <dc:creator>former_member309012</dc:creator>
    <dc:date>2016-11-28T11:04:16Z</dc:date>
    <item>
      <title>UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375033#M8705</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I try to follow the programming paradigm, that the lifespan of variables should be kept as short as possible. I miss an UNDATA-statement to kill a local variable after use. It should make code much better: After you are done, the variable is killed. The variable name hereby becomes available for reuse.&lt;/P&gt;&lt;P&gt;This looks so simple to realize. Why does it not exist? Note, that my focus is &lt;EM&gt;not &lt;/EM&gt;on reducing memory, but to shorten the lifespan.&lt;/P&gt;&lt;P&gt;Any reply from the SAP ABAP-developers? Thank you in advance, / Ulrich&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2016 11:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375033#M8705</guid>
      <dc:creator>former_member309012</dc:creator>
      <dc:date>2016-11-28T11:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375034#M8706</link>
      <description>&lt;P&gt;If I remember well, Horst Keller said a few weeks ago that it could soon arrive (7.52?)&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2016 13:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375034#M8706</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-11-28T13:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375035#M8707</link>
      <description>&lt;P&gt;Huh, did I? Point me there, what it was about. For the time being the request can be fulfilled with data reference variables.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;var = NEW i( 123 ).

... var-&amp;gt;* ...

CLEAR var.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Nov 2016 18:49:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375035#M8707</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-11-28T18:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375036#M8708</link>
      <description>&lt;P&gt;oh sorry then, but maybe you can talk to the ABAP/kernel guys &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Didn't you talk about kind of start/end blocks within the procedures, where the declared data may only be used there, or something like that?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 08:03:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375036#M8708</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-11-29T08:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375037#M8709</link>
      <description>&lt;P&gt;Hmm, no currently I'm not aware of such plans. The visibility/usability of data objects in ABAP is in fact kind of queer. You know that: statically visible behind declaration, dynamically usable in whole context. Even the new inline declarations or the LET expressions rather enhance the queerness instead of offering real local visibility. Therefore ...&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 10:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375037#M8709</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-11-29T10:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375038#M8710</link>
      <description>&lt;P&gt;Thanks for correcting me Horst &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Anyway, 7.40+ is so cool (and I'm impatient to know what comes in future releases...)&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 11:55:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375038#M8710</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-11-29T11:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375039#M8711</link>
      <description>&lt;P&gt;We'll be upgrading to ABAP 750 next year, yayyy!!!&lt;/P&gt;&lt;P&gt;I have already started my planning to use Test-seams &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 12:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375039#M8711</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2016-11-29T12:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375040#M8712</link>
      <description>&lt;P&gt;Did you mean &lt;A href="https://blogs.sap.com/2016/10/10/abap-news-release-7.51-enumerations/#comment-348114"&gt;that&lt;/A&gt;? Kinda different ...&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 14:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375040#M8712</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-11-30T14:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: UN-DATA command for local variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375041#M8713</link>
      <description>&lt;P&gt;Nope, I didn't think to “static single assignment”. Probably it was a dream and I thought it would become real &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 15:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/un-data-command-for-local-variables/m-p/375041#M8713</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-11-30T15:28:10Z</dc:date>
    </item>
  </channel>
</rss>

