<?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 Community Coding Challenge - March 2020 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147606#M1976672</link>
    <description>&lt;P&gt;Finalist #2: Regex Approach&lt;/P&gt;&lt;P&gt;By: &lt;SPAN class="mention-scrubbed"&gt;alexander_frank&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SPLIT condense( sentence ) AT space INTO TABLE DATA(words).
    out-&amp;gt;write( |Number of words: { lines( words ) }| ).
    LOOP AT words REFERENCE INTO DATA(word).
      DATA(unique_chars_in_word) = replace( val = word-&amp;gt;* regex = `(.)(?=.*\1)` with = `` occ = 0 ).
      out-&amp;gt;write( |Number of unique characters in the word: { word-&amp;gt;* } - { strlen( unique_chars_in_word ) }| ).
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 17 Mar 2020 13:51:48 GMT</pubDate>
    <dc:creator>thomas_jung</dc:creator>
    <dc:date>2020-03-17T13:51:48Z</dc:date>
    <item>
      <title>SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147604#M1976670</link>
      <description>&lt;P&gt;This is the voting thread for the March 2020 SAP Community Coding Challenge. For the challenge details and directions see this blog:&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://blogs.sap.com/2020/02/28/sap-community-coding-challenge-series/"&gt;https://blogs.sap.com/2020/02/28/sap-community-coding-challenge-series/&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;In this Question thread I will post the 7 finalist. Use the answer voting mechanism to choose the one solution you believe should be the overall winner. Remember: this is all for fun and education. We are all winners here because of the great knowledge sharing!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147604#M1976670</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147605#M1976671</link>
      <description>&lt;P&gt;Finalist #1: CL_ABAP_MATCHER Approach&lt;/P&gt;&lt;P&gt;By  &lt;SPAN class="mention-scrubbed"&gt;pawelgrzeskowiak&lt;/SPAN&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SPLIT condense( sentence ) AT space INTO TABLE DATA(words).


    out-&amp;gt;write( |Number of words: { lines( words )  } | ).


    LOOP AT words ASSIGNING FIELD-SYMBOL(&amp;lt;word&amp;gt;).
      DATA(matcher) = NEW cl_abap_matcher(
                      regex = NEW cl_abap_regex( pattern = '(.)(?!.*\1)' )
                      text  =  &amp;lt;word&amp;gt; ).
      out-&amp;gt;write( |Number of unique characters in the word: { &amp;lt;word&amp;gt; } - {  lines( matcher-&amp;gt;find_all( ) )  } | ).
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147605#M1976671</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147606#M1976672</link>
      <description>&lt;P&gt;Finalist #2: Regex Approach&lt;/P&gt;&lt;P&gt;By: &lt;SPAN class="mention-scrubbed"&gt;alexander_frank&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SPLIT condense( sentence ) AT space INTO TABLE DATA(words).
    out-&amp;gt;write( |Number of words: { lines( words ) }| ).
    LOOP AT words REFERENCE INTO DATA(word).
      DATA(unique_chars_in_word) = replace( val = word-&amp;gt;* regex = `(.)(?=.*\1)` with = `` occ = 0 ).
      out-&amp;gt;write( |Number of unique characters in the word: { word-&amp;gt;* } - { strlen( unique_chars_in_word ) }| ).
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:51:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147606#M1976672</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147607#M1976673</link>
      <description>&lt;P&gt;Finalist #3: For/Group By Approach&lt;/P&gt;&lt;P&gt;By:  &lt;SPAN class="mention-scrubbed"&gt;sougata.chatterjee&lt;/SPAN&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SPLIT condense( sentence ) AT space INTO TABLE DATA(lt_words).
    out-&amp;gt;write( |Number of Words: { lines( lt_words ) }| ).

    LOOP AT lt_words ASSIGNING FIELD-SYMBOL(&amp;lt;word&amp;gt;).
      out-&amp;gt;write(
    |Number of unique characters in the word: { &amp;lt;word&amp;gt; } - {
       lines( VALUE string_table(
        FOR GROUPS x OF y
        IN VALUE string_table(
            FOR i = 0 THEN i + 1
            UNTIL i = strlen( &amp;lt;word&amp;gt; ) ( &amp;lt;word&amp;gt;+i(1) ) )
            GROUP BY y ( x ) ) ) }| ).
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147607#M1976673</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147608#M1976674</link>
      <description>&lt;P&gt;Finalist #4: SELECT DISTINCT Approach&lt;/P&gt;&lt;P&gt;By:  &lt;SPAN class="mention-scrubbed"&gt;dominik.bigl2&lt;/SPAN&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SPLIT condense( sentence ) AT | | INTO TABLE DATA(words).
    out-&amp;gt;write( |Number of words: { lines( words ) } | ).

    LOOP AT words ASSIGNING FIELD-SYMBOL(&amp;lt;word&amp;gt;).
      DATA(characters) = VALUE ABAP_SORTORDER_tab( FOR char = 0 THEN char + 1 UNTIL char = strlen( &amp;lt;word&amp;gt; ) ( name = &amp;lt;word&amp;gt;+char(1) ) ).
      SELECT DISTINCT * FROM @characters AS characters INTO TABLE @DATA(unique_characters).
      out-&amp;gt;write( |Number of unique characters in the word: { &amp;lt;word&amp;gt; } - { lines( unique_characters ) } | ).
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147608#M1976674</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147609#M1976675</link>
      <description>&lt;P&gt;Finalist #5: Single Line Solution&lt;/P&gt;&lt;P&gt;By:  &lt;SPAN class="mention-scrubbed"&gt;christian.guenter&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; out-&amp;gt;write( CONV string(
                          LET sentence = `ABАP  is excellent `
                              match_word_regex = `\w+`
                              match_duplicate_chars_regex = `(.)(?=.*\1)`
                              num_of_words = count( val   = sentence
                                                    regex = match_word_regex )
                          IN REDUCE #( INIT output = |Number of words: { num_of_words }|
                                       FOR word_index = 1 WHILE word_index &amp;lt;= num_of_words
                                       LET word = match( val   = sentence
                                                         regex = match_word_regex
                                                         occ   = word_index )
                                           num_of_unique_chars = numofchar( replace( val   = word
                                                                                     regex = match_duplicate_chars_regex
                                                                                     occ   = 0
                                                                                     with  = space ) )
                                       IN NEXT output = output &amp;amp;&amp;amp; |\nNumber of unique characters in word: { word } - { num_of_unique_chars }| ) ) ).


&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:56:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147609#M1976675</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147610#M1976676</link>
      <description>&lt;P&gt;Finalist #6: Sorted Table Discarding Duplicates Approach&lt;/P&gt;&lt;P&gt;By:  &lt;SPAN class="mention-scrubbed"&gt;jacques.nomssi&lt;/SPAN&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    TYPES sorted_char_table TYPE SORTED TABLE OF string WITH UNIQUE DEFAULT KEY.
    DO.
      TRY.
          DATA(word) = segment( val = sentence index = sy-index space = ` ` ).
          DATA(characters) = VALUE string_table( FOR idx = 0 UNTIL idx = numofchar( word )  ( word+idx(1)  ) ).
          DATA(chars_in_word) = CORRESPONDING sorted_char_table( characters DISCARDING DUPLICATES ).
         out-&amp;gt;write( |Number of unique characters in the word:{ word } - { lines( chars_in_word ) }| ).

        CATCH cx_sy_strg_par_val.
          out-&amp;gt;write( |Number of words:{  sy-index - 1 }| ).
          EXIT.
      ENDTRY.
    ENDDO.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:57:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147610#M1976676</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147611#M1976677</link>
      <description>&lt;P&gt;Finalist #7: Reduce Approach&lt;/P&gt;&lt;P&gt;By:   &lt;SPAN class="mention-scrubbed"&gt;dinumbabu&lt;/SPAN&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SPLIT sentence AT ` ` INTO TABLE DATA(words).
    DELETE words WHERE table_line IS INITIAL.
    out-&amp;gt;write( |no of words: { lines( words ) } | ).

    LOOP AT words ASSIGNING FIELD-SYMBOL(&amp;lt;word&amp;gt;).
      out-&amp;gt;write( |Number of unique characters in the word: { &amp;lt;word&amp;gt; } - {
                                  REDUCE i( INIT len = 1
                                            FOR n = 1  WHILE ( n &amp;lt;= strlen( &amp;lt;word&amp;gt; ) - 1 )
                                            NEXT len =  len + COND #( WHEN &amp;lt;word&amp;gt;+0(n) CA &amp;lt;word&amp;gt;+n(1) THEN 0 ELSE 1  ) ) } | ).
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147611#M1976677</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T13:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147612#M1976678</link>
      <description>&lt;P&gt;We also have the replay of the live stream where we announced the finalist available: &lt;A href="https://youtu.be/4riDYGR_t_o"&gt;https://youtu.be/4riDYGR_t_o&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147612#M1976678</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T14:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147613#M1976679</link>
      <description>&lt;P&gt;I was really looking forward to see the final solutions. I really love the "SELECT DISTINCT" and the "Sorted Table Discarding Duplicates" Approach.&lt;/P&gt;&lt;P&gt;Congratulation for all the finalist and special award winners.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:04:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147613#M1976679</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2020-03-17T14:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147614#M1976680</link>
      <description>&lt;P&gt;absolutly love it !&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147614#M1976680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-03-17T14:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147615#M1976681</link>
      <description>&lt;P&gt;perfect solution!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147615#M1976681</guid>
      <dc:creator>rothkl</dc:creator>
      <dc:date>2020-03-17T14:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147616#M1976682</link>
      <description>&lt;P&gt;FROM @ works only with HANA&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147616#M1976682</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-03-17T14:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147617#M1976683</link>
      <description>&lt;P&gt;Who will check that nobody does a vote +1 for their favorite and -1 for others? &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:45:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147617#M1976683</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-03-17T14:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147618#M1976684</link>
      <description>&lt;P&gt;love this solution!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:47:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147618#M1976684</guid>
      <dc:creator>former_member744839</dc:creator>
      <dc:date>2020-03-17T14:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147619#M1976685</link>
      <description>&lt;P&gt;perfect solution&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147619#M1976685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-03-17T14:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147620#M1976686</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; - &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapselect_itab.htm"&gt;https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapselect_itab.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:52:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147620#M1976686</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T14:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147621#M1976687</link>
      <description>&lt;P&gt;How many solutions did you get overall?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147621#M1976687</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2020-03-17T14:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147622#M1976688</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;enno.wulff&lt;/SPAN&gt; - a little shy of 200 entries. &lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:55:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147622#M1976688</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2020-03-17T14:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Community Coding Challenge - March 2020</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147623#M1976689</link>
      <description>&lt;P&gt;I mean, in Open SQL, SELECT ... FROM @ is only supported if the database is HANA &lt;STRONG&gt;(*)&lt;/STRONG&gt;. For instance, SAP Sybase ASE (16.0) doesn't support it (Developer Edition 7.52). Of course, it works with the ABAP Cloud environment, but generally speaking, many SAP clients don't have HANA (yet).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(*) EDIT:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SELECT DISTINCT works only if the database is HANA.&lt;/P&gt;&lt;P&gt;Complete explanation: FROM @ITAB works from 7.52 only if&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;either &lt;/STRONG&gt;the SQL statement is really simple (no join, no order by, no distinct, etc.) so it's executed by ABAP kernel, &lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;or &lt;/STRONG&gt;it's not really simple and it's executed by the database and only HANA currently supports it.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 17 Mar 2020 14:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-community-coding-challenge-march-2020/m-p/12147623#M1976689</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-03-17T14:56:39Z</dc:date>
    </item>
  </channel>
</rss>

