<?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: Improve  ABAP Code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557159#M2007304</link>
    <description>&lt;P&gt;if you could post little bit more of this code, we could help you for ABAP Unit (could scary little bit the first time you see it, but it will give you great Abap power &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; )&lt;/P&gt;</description>
    <pubDate>Mon, 25 Apr 2022 12:28:33 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2022-04-25T12:28:33Z</dc:date>
    <item>
      <title>Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557152#M2007297</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;Experts, Is there any better way to do the following coding? The main purpose of the following code is to distribute total stock to different periods from front to back, &lt;/EM&gt;&lt;EM&gt;Every period has already calculated the total receipt quantity.&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;&lt;I&gt;thanks!&lt;/I&gt;&lt;/P&gt;
  &lt;P&gt;&lt;I&gt;*Define&lt;/I&gt;&lt;/P&gt;*-----------------------------------------------------------------
  &lt;BR /&gt;DEFINE MOVE_SUB.
  &lt;BR /&gt; d_menge_i = d_menge_i_sub. clear d_menge_i_sub.
  &lt;BR /&gt;END-OF-DEFINITION.
  &lt;BR /&gt;
  &lt;BR /&gt;DEFINE SUB_M_D.
  &lt;BR /&gt; d_menge_i_sub = d_menge_i - &amp;amp;1.
  &lt;BR /&gt;END-OF-DEFINITION.
  &lt;BR /&gt;
  &lt;BR /&gt;DEFINE MOVE_M_D.
  &lt;BR /&gt; &amp;amp;1 = d_menge_i.
  &lt;BR /&gt;
  &lt;P&gt;END-OF-DEFINITION.&lt;/P&gt;
  &lt;P&gt; D_MENGE_I = D_MENGE_I_E - D_MENGE_I_1. " total stock - first month receipt quanity&lt;/P&gt; IF D_MENGE_I &amp;lt;= 0. "1M
  &lt;BR /&gt; IT_DATA-MENGE_1 = D_MENGE_I_E.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_1 = D_MENGE_I_1.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_2.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "1-2M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_2.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_2 = D_MENGE_I_2.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_3.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "2-3M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_3.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_3 = D_MENGE_I_3.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_4.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "4-6M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_4.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_4 = D_MENGE_I_4.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_51.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "7M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_51.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_51 = D_MENGE_I_51.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_52.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "8M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_52.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_52 = D_MENGE_I_52.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_53.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "9M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_53.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_53 = D_MENGE_I_53.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_54.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "10M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_54.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_54 = D_MENGE_I_54.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_55.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "11M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_55.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_55 = D_MENGE_I_55.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_56.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "12M
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_56.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_56 = D_MENGE_I_56.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_6.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "1-2Y
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_6.
  &lt;BR /&gt; ELSE.
  &lt;BR /&gt; IT_DATA-MENGE_6 = D_MENGE_I_6.
  &lt;BR /&gt; MOVE_SUB.
  &lt;BR /&gt; SUB_M_D D_MENGE_I_7.
  &lt;BR /&gt; IF D_MENGE_I_SUB &amp;lt;= 0. "2-3Y
  &lt;BR /&gt; MOVE_M_D IT_DATA-MENGE_7.
  &lt;BR /&gt; ELSE. "&amp;gt;3Y
  &lt;BR /&gt; IT_DATA-MENGE_7 = D_MENGE_I_7.
  &lt;BR /&gt; IT_DATA-MENGE_8 = D_MENGE_I_SUB.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt;
  &lt;P&gt; APPEND IT_DATA.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 10:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557152#M2007297</guid>
      <dc:creator>former_member799034</dc:creator>
      <dc:date>2022-04-25T10:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557153#M2007298</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;please use the CODE-function in your posting, that makes code much better readable.&lt;/P&gt;&lt;P&gt;I already see the definition of macros. I would not use macros anymore as they are deprecated.&lt;/P&gt;&lt;P&gt;Kind regards&lt;BR /&gt;Jens&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 10:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557153#M2007298</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-04-25T10:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557154#M2007299</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;
*Define&lt;BR /&gt;*-----------------------------------------------------------------&lt;BR /&gt;DEFINE MOVE_SUB.&lt;BR /&gt;  d_menge_i = d_menge_i_sub. clear d_menge_i_sub.&lt;BR /&gt;END-OF-DEFINITION.&lt;BR /&gt;&lt;BR /&gt;DEFINE SUB_M_D.&lt;BR /&gt;  d_menge_i_sub = d_menge_i - &amp;amp;1.&lt;BR /&gt;END-OF-DEFINITION.&lt;BR /&gt;&lt;BR /&gt;DEFINE MOVE_M_D.&lt;BR /&gt;  &amp;amp;1 = d_menge_i.&lt;BR /&gt;END-OF-DEFINITION.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;      D_MENGE_I = D_MENGE_I_E - D_MENGE_I_1.  "Total stock - first month receipt quanity&lt;BR /&gt;&lt;BR /&gt;      IF D_MENGE_I &amp;lt;= 0.                            "1M&lt;BR /&gt;        IT_DATA-MENGE_1 = D_MENGE_I_E.&lt;BR /&gt;      ELSE.&lt;BR /&gt;        IT_DATA-MENGE_1 = D_MENGE_I_1.&lt;BR /&gt;&lt;BR /&gt;        SUB_M_D D_MENGE_I_2.&lt;BR /&gt;        IF D_MENGE_I_SUB &amp;lt;= 0.                          "1-2M&lt;BR /&gt;          MOVE_M_D IT_DATA-MENGE_2.&lt;BR /&gt;        ELSE.&lt;BR /&gt;          IT_DATA-MENGE_2 = D_MENGE_I_2.&lt;BR /&gt;          MOVE_SUB.&lt;BR /&gt;          SUB_M_D D_MENGE_I_3.&lt;BR /&gt;          IF D_MENGE_I_SUB &amp;lt;= 0.                        "2-3M&lt;BR /&gt;            MOVE_M_D IT_DATA-MENGE_3.&lt;BR /&gt;          ELSE.&lt;BR /&gt;            IT_DATA-MENGE_3 = D_MENGE_I_3.&lt;BR /&gt;            MOVE_SUB.&lt;BR /&gt;            SUB_M_D D_MENGE_I_4.&lt;BR /&gt;            IF D_MENGE_I_SUB &amp;lt;= 0.                      "4-6M&lt;BR /&gt;              MOVE_M_D IT_DATA-MENGE_4.&lt;BR /&gt;            ELSE.&lt;BR /&gt;              IT_DATA-MENGE_4 = D_MENGE_I_4.&lt;BR /&gt;              MOVE_SUB.&lt;BR /&gt;              SUB_M_D D_MENGE_I_51.&lt;BR /&gt;              IF D_MENGE_I_SUB &amp;lt;= 0.                      "7M&lt;BR /&gt;                MOVE_M_D IT_DATA-MENGE_51.&lt;BR /&gt;              ELSE.&lt;BR /&gt;                IT_DATA-MENGE_51 = D_MENGE_I_51.&lt;BR /&gt;                MOVE_SUB.&lt;BR /&gt;                SUB_M_D D_MENGE_I_52.&lt;BR /&gt;                IF D_MENGE_I_SUB &amp;lt;= 0.                      "8M&lt;BR /&gt;                  MOVE_M_D IT_DATA-MENGE_52.&lt;BR /&gt;                ELSE.&lt;BR /&gt;                  IT_DATA-MENGE_52 = D_MENGE_I_52.&lt;BR /&gt;                  MOVE_SUB.&lt;BR /&gt;                  SUB_M_D D_MENGE_I_53.&lt;BR /&gt;                  IF D_MENGE_I_SUB &amp;lt;= 0.                      "9M&lt;BR /&gt;                    MOVE_M_D IT_DATA-MENGE_53.&lt;BR /&gt;                  ELSE.&lt;BR /&gt;                    IT_DATA-MENGE_53 = D_MENGE_I_53.&lt;BR /&gt;                    MOVE_SUB.&lt;BR /&gt;                    SUB_M_D D_MENGE_I_54.&lt;BR /&gt;                    IF D_MENGE_I_SUB &amp;lt;= 0.                      "10M&lt;BR /&gt;                      MOVE_M_D IT_DATA-MENGE_54.&lt;BR /&gt;                    ELSE.&lt;BR /&gt;                      IT_DATA-MENGE_54 = D_MENGE_I_54.&lt;BR /&gt;                      MOVE_SUB.&lt;BR /&gt;                      SUB_M_D D_MENGE_I_55.&lt;BR /&gt;                      IF D_MENGE_I_SUB &amp;lt;= 0.                      "11M&lt;BR /&gt;                        MOVE_M_D IT_DATA-MENGE_55.&lt;BR /&gt;                      ELSE.&lt;BR /&gt;                        IT_DATA-MENGE_55 = D_MENGE_I_55.&lt;BR /&gt;                        MOVE_SUB.&lt;BR /&gt;                        SUB_M_D D_MENGE_I_56.&lt;BR /&gt;                        IF D_MENGE_I_SUB &amp;lt;= 0.                      "12M&lt;BR /&gt;                          MOVE_M_D IT_DATA-MENGE_56.&lt;BR /&gt;                        ELSE.&lt;BR /&gt;                          IT_DATA-MENGE_56 = D_MENGE_I_56.&lt;BR /&gt;                          MOVE_SUB.&lt;BR /&gt;                          SUB_M_D D_MENGE_I_6.&lt;BR /&gt;*                          IF D_MENGE_I_SUB &amp;lt;= 0 .                 "7-12M&lt;BR /&gt;*                            MOVE_M_D IT_DATA-MENGE_5.&lt;BR /&gt;*                          ELSE.&lt;BR /&gt;*                            IT_DATA-MENGE_5 = D_MENGE_I_5.&lt;BR /&gt;*                            MOVE_SUB.&lt;BR /&gt;*                            SUB_M_D D_MENGE_I_6.&lt;BR /&gt;                          IF D_MENGE_I_SUB &amp;lt;= 0.                  "1-2Y&lt;BR /&gt;                            MOVE_M_D IT_DATA-MENGE_6.&lt;BR /&gt;                          ELSE.&lt;BR /&gt;                            IT_DATA-MENGE_6 = D_MENGE_I_6.&lt;BR /&gt;                            MOVE_SUB.&lt;BR /&gt;                            SUB_M_D D_MENGE_I_7.&lt;BR /&gt;                            IF D_MENGE_I_SUB &amp;lt;= 0.                "2-3Y&lt;BR /&gt;                              MOVE_M_D IT_DATA-MENGE_7.&lt;BR /&gt;                            ELSE.                                 "&amp;gt;3Y&lt;BR /&gt;                              IT_DATA-MENGE_7 = D_MENGE_I_7.&lt;BR /&gt;                              IT_DATA-MENGE_8 = D_MENGE_I_SUB.&lt;BR /&gt;                            ENDIF.&lt;BR /&gt;                          ENDIF.&lt;BR /&gt;                        ENDIF.&lt;BR /&gt;                      ENDIF.&lt;BR /&gt;*                      ENDIF.&lt;BR /&gt;                    ENDIF.&lt;BR /&gt;                  ENDIF.&lt;BR /&gt;                ENDIF.&lt;BR /&gt;              ENDIF.&lt;BR /&gt;            ENDIF.&lt;BR /&gt;          ENDIF.&lt;BR /&gt;        ENDIF.&lt;BR /&gt;      ENDIF.&lt;BR /&gt;&lt;BR /&gt;      IT_DATA-MENGE_5 = IT_DATA-MENGE_51 + IT_DATA-MENGE_52 +&lt;BR /&gt;                        IT_DATA-MENGE_53 + IT_DATA-MENGE_54 +&lt;BR /&gt;                        IT_DATA-MENGE_55 + IT_DATA-MENGE_56.&lt;BR /&gt;      APPEND IT_DATA.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Apr 2022 10:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557154#M2007299</guid>
      <dc:creator>former_member799034</dc:creator>
      <dc:date>2022-04-25T10:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557155#M2007300</link>
      <description>&lt;P&gt;as  &lt;SPAN class="mention-scrubbed"&gt;jzaehringer&lt;/SPAN&gt;, macro is deprecated&lt;/P&gt;&lt;P&gt;use Oo, with a simple recursive method &lt;/P&gt;&lt;P&gt;You should also use ABAP Unit to test your code &lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 11:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557155#M2007300</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-04-25T11:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557156#M2007301</link>
      <description>&lt;P&gt;Well, these codes may have a long history, It's done ten years ago, Recently my customer has some new business request， So when I start to work and I look at this long long code， I thought maybe I can make a little bit improve，make it looks more clear， But I don't want to rewrite all code.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 12:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557156#M2007301</guid>
      <dc:creator>former_member799034</dc:creator>
      <dc:date>2022-04-25T12:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557157#M2007302</link>
      <description>&lt;P&gt;&lt;A href="https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#how-to-refactor-legacy-code" target="test_blank"&gt;https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#how-to-refactor-legacy-code&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Follow the boy scout rule to your daily work routine: always leave the code you edit a little cleaner than you found it. Don't obsess with this by sinking hours into "cleaning the campsite", just spend a couple of minutes extra and observe how the improvements accumulate over time.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;You have no choice, to keep a cleaner place, you have to fully rewrite it. &lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 12:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557157#M2007302</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-04-25T12:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557158#M2007303</link>
      <description>&lt;SPAN class="mention-scrubbed"&gt;william.tse&lt;/SPAN&gt; &lt;BR /&gt;&lt;OL&gt;&lt;LI&gt;Before making adding the new logic, get the code into a test harness. I.e. write ABAP Unit Tests and make sure it passes them all.&lt;/LI&gt;&lt;LI&gt;Replace the macros with calls to methods - make sure all your unit tests pass&lt;/LI&gt;&lt;LI&gt;Rename the variables into something meaningful d_menge_i_e and d_menge_i_1 are not terribly meaningful&lt;/LI&gt;&lt;LI&gt;Rewrite the code so that what it does is readily understandable. Run the unit tests again and fix until it passes them all.&lt;/LI&gt;&lt;LI&gt;Add a new unit test for the new requirement.&lt;/LI&gt;&lt;LI&gt;Write and fix until the new test is passed by the code.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Bit the bullet. Rewrite the code. It's awful - expensive and shoddy. You've got a ten year &lt;A href="https://en.wikipedia.org/wiki/Technical_debt" target="_blank"&gt;technical debt&lt;/A&gt; there. If you pay off the debt now, then you'll be able to do the next change far more quickly and easily. Or your successor will.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 12:16:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557158#M2007303</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2022-04-25T12:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557159#M2007304</link>
      <description>&lt;P&gt;if you could post little bit more of this code, we could help you for ABAP Unit (could scary little bit the first time you see it, but it will give you great Abap power &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; )&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 12:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557159#M2007304</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-04-25T12:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557160#M2007305</link>
      <description>&lt;P&gt;I agree with Matthew, the code is awful, I can't understand what it does, use meaningful names, etc. (do what Matthew suggested).&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 14:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557160#M2007305</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-04-25T14:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Improve  ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557161#M2007306</link>
      <description>&lt;P&gt;OK, I will try it, thanks for your advice&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 01:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/improve-abap-code/m-p/12557161#M2007306</guid>
      <dc:creator>former_member799034</dc:creator>
      <dc:date>2022-04-26T01:32:26Z</dc:date>
    </item>
  </channel>
</rss>

