<?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: ABAP 7.4 SYNTAX in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555975#M2007170</link>
    <description>&lt;P&gt;Thank you for the help&lt;/P&gt;</description>
    <pubDate>Fri, 04 Mar 2022 05:40:59 GMT</pubDate>
    <dc:creator>atharva21k51</dc:creator>
    <dc:date>2022-03-04T05:40:59Z</dc:date>
    <item>
      <title>ABAP 7.4 SYNTAX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555972#M2007167</link>
      <description>&lt;P&gt;I have this particular code and i want to write this is in new abap syntax 7.4 can someone help and also give me reference sites or blogs where i can learn this new syntax&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;DATA : ls_aedat LIKE LINE OF s_aedat,&lt;BR /&gt; l_nb_annee TYPE tvarv_val,&lt;BR /&gt; l_nb_mois TYPE tvarv_val.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; DATA : ls_bewtp LIKE LINE OF r_bewtp.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; REFRESH : s_aedat.&lt;BR /&gt; CLEAR : ls_aedat,&lt;BR /&gt; l_nb_mois,&lt;BR /&gt; l_nb_annee.&lt;BR /&gt;&lt;BR /&gt; ls_aedat-sign = 'I'.&lt;BR /&gt; ls_aedat-option = 'BT'.&lt;BR /&gt; ls_aedat-high = sy-datum.&lt;/STRONG&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 13:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555972#M2007167</guid>
      <dc:creator>atharva21k51</dc:creator>
      <dc:date>2022-03-03T13:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP 7.4 SYNTAX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555973#M2007168</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;ls_aedat = value #( sign = 'I'  option = 'BT'  high = sy-datum ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;if you want to add directly to the S_AEDAT ranges.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;s_aedat = value #( ( sign = 'I'  option = 'BT'  high = sy-datum ) ). &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Mar 2022 13:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555973#M2007168</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-03-03T13:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP 7.4 SYNTAX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555974#M2007169</link>
      <description>&lt;P&gt;I think you will find good reference with Search Engines like Google, etc.&lt;/P&gt;&lt;P&gt;Or simply the official ABAP documentation.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 15:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555974#M2007169</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-03-03T15:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP 7.4 SYNTAX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555975#M2007170</link>
      <description>&lt;P&gt;Thank you for the help&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 05:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555975#M2007170</guid>
      <dc:creator>atharva21k51</dc:creator>
      <dc:date>2022-03-04T05:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP 7.4 SYNTAX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555976#M2007171</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;atharva21k&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Frederic and Sandra already provided some information abvoe. In addition, here are links which I point to in our internal development guidelines as I find them helpful to go from "old" to "new" ABAP code:&lt;/P&gt;&lt;P&gt;&lt;A rel="nofollow" href="https://blogs.sap.com/2015/10/25/abap-740-quick-reference/" target="_blank"&gt;ABAP 7.40 Quick Reference&lt;/A&gt; - Jeffrey Towell - Oct. 25, 2015&lt;/P&gt;&lt;P&gt;&lt;A rel="nofollow" href="https://blogs.sap.com/2016/03/02/old-and-new-abap-syntax-overview-sheet/" target="_blank"&gt;Old and new ABAP syntax – overview sheet&lt;/A&gt; - Thomas Krügl - March 2, 2016&lt;/P&gt;&lt;P&gt;&lt;A rel="nofollow" href="https://blogs.sap.com/2018/06/15/new-abap-table-sum/" target="_blank"&gt;New ABAP Table Sum&lt;/A&gt; - Jonathan Capps - June 15, 2018
&lt;/P&gt;&lt;P&gt;Hope these help!&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Bärbel&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 07:07:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555976#M2007171</guid>
      <dc:creator>BaerbelWinkler</dc:creator>
      <dc:date>2022-03-04T07:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP 7.4 SYNTAX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555977#M2007172</link>
      <description>&lt;P&gt;thanks for the references&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 08:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-7-4-syntax/m-p/12555977#M2007172</guid>
      <dc:creator>atharva21k51</dc:creator>
      <dc:date>2022-03-04T08:48:05Z</dc:date>
    </item>
  </channel>
</rss>

