<?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: About ABAP SQL  join  expressions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938669#M1965406</link>
    <description>&lt;P&gt;EDIT: whole answer changed.&lt;/P&gt;&lt;P&gt;EDIT: this answer is valid for ABAP &amp;gt;= 7.51&lt;/P&gt;&lt;P&gt;To operate on dates, you have the &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abensql_date_func.htm"&gt;date functions&lt;/A&gt;, especially DATS_ADD_DAYS to add or &lt;STRONG&gt;subtract&lt;/STRONG&gt; days.&lt;/P&gt;&lt;P&gt;As &lt;A href="https://help.sap.com/doc/abapdocu_753_index_htm/7.53/en-US/index.htm?file=abenwhere_logexp.htm"&gt;No SQL expressions can be used on the right side of relational expression&lt;/A&gt;, you need to switch the order of the operands in your case.&lt;/P&gt;&lt;P&gt;To simplify, let's state that your starting SQL is :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; SELECT *
   FROM PA0302 AS A
  INNER JOIN PA0008 AS B
     ON B~PERNR = A~PERNR
    AND B~BEGDA &amp;lt;= A~BEGDA
    AND B~ENDDA &amp;gt;= A~BEGDA
   INTO TABLE @DATA(O_TB_COMMON).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then you change it to:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; SELECT *
   FROM PA0302 AS A
  INNER JOIN PA0008 AS B
     ON B~PERNR = A~PERNR
    AND DATS_ADD_DAYS( A~BEGDA, -1 ) &amp;gt;= B~BEGDA
    AND DATS_ADD_DAYS( A~BEGDA, -1 ) &amp;lt;= B~ENDDA
  INTO TABLE @DATA(O_TB_COMMON).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;
&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2019 08:04:44 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-03-21T08:04:44Z</dc:date>
    <item>
      <title>About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938657#M1965394</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
  &lt;P&gt; There is an issue that I've written a SQL (5 Tables Joined ), But now the join condition has been changed.&lt;/P&gt;
  &lt;P&gt;So can the ABAP SQL solve the problem.&lt;/P&gt;
  &lt;P&gt; Here is the code . My requirement is &lt;/P&gt;
  &lt;P&gt; INNER JOIN PA0008 AS B&lt;BR /&gt; ON B~PERNR = A~PERNR&lt;/P&gt;
  &lt;STRONG&gt;&lt;/STRONG&gt;
  &lt;STRONG&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;P&gt;&lt;EM&gt; AND B~BEGDA &amp;lt;= A~BEGDA - 1 ← this is requirement point&lt;BR /&gt; AND B~ENDDA &amp;gt;= A~BEGDA - 1 ←&lt;/EM&gt; &lt;EM&gt; this is requirement point&lt;/EM&gt;&lt;/P&gt;&lt;/STRONG&gt;
  &lt;PRE&gt;&lt;CODE&gt; SELECT A~PERNR, 
        A~ENDDA, 
        A~BEGDA, 
        A~MASSN, 
        A~MASSG, 
        B~TRFGR, 
        B~TRFST, 
        C~PERSG, 
        C~ANSVH, 
        D~PTEXT, 
        E~ATX 
   FROM PA0302 AS A
  INNER JOIN PA0008 AS B
     ON B~PERNR = A~PERNR
    AND B~BEGDA &amp;lt;= A~BEGDA
    AND B~ENDDA &amp;gt;= A~BEGDA
  INNER JOIN PA0001 AS C
     ON C~PERNR = A~PERNR
    AND C~BEGDA &amp;lt;= A~BEGDA
    AND C~ENDDA &amp;gt;= A~BEGDA
   LEFT OUTER JOIN T501T AS D 
     ON D~PERSG = C~PERSG
    AND D~SPRSL = @SY-LANGU
   LEFT OUTER JOIN T542T AS E 
     ON E~ANSVH = C~ANSVH
    AND E~SPRAS = D~SPRSL
    AND E~MOLGA = @CNS_COM-MOLGAJ
   INTO TABLE @O_TB_COMMON
    FOR ALL ENTRIES IN @I_TB_PERNR
  WHERE A~PERNR = @I_TB_PERNR-PERNR
    AND A~BEGDA &amp;gt;= @S_PERIOD-LOW
    AND A~BEGDA &amp;lt;= @S_PERIOD-HIGH
    AND (
          ( A~MASSN = @CNS_MSN-MASSN_20
        AND A~MASSG = @CNS_ARY-MASSG_20_01 )
         OR A~MASSN = @CNS_MSN-MASSN_70
         )
    AND B~TRFGR IN ( @CNS_TRFGR-MNG, 
        @CNS_TRFGR-KA, 
        @CNS_TRFGR-KB, 
        @CNS_TRFGR-KC, 
        @CNS_TRFGR-JA,
        @CNS_TRFGR-JB, 
        @CNS_TRFGR-JC, 
        @CNS_TRFGR-I1, 
        @CNS_TRFGR-I2, 
        @CNS_TRFGR-I3, 
        @CNS_TRFGR-IS ). 
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 10:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938657#M1965394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-18T10:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938658#M1965395</link>
      <description>&lt;P&gt;I can not test it since it is only from 7.50 and up. There are arithmetic expressions:&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abensql_arith.htm" target="test_blank"&gt;https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abensql_arith.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But there is no DATE listed in documentation, so it might not work for date field...&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 07:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938658#M1965395</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2019-03-19T07:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938659#M1965396</link>
      <description>&lt;P&gt;So, as you said.&lt;/P&gt;&lt;P&gt;It seems that it really doesn't work.&lt;/P&gt;&lt;P&gt;I decided that split it to five SQL .So sad................ *^*&lt;/P&gt;&lt;P&gt;But thank you all the same. &lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 08:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938659#M1965396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-19T08:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938660#M1965397</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;liuyiping&lt;/SPAN&gt; Yeah, I am afraid split SQL will be needed. You can try explore CDS if you are familiar with it or native SQL. But that is probably all can be done...&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 08:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938660#M1965397</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2019-03-19T08:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938661#M1965398</link>
      <description>&lt;P&gt;You can't do it this way using open SQL. You will need to split the query in two. In the first, select data from PA0008 with BEGDA - 1 and put in a internal table, and then, use the for all entries clause to join this table with the second.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 12:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938661#M1965398</guid>
      <dc:creator>balbino_soaresferreirafil</dc:creator>
      <dc:date>2019-03-19T12:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938662#M1965399</link>
      <description>&lt;P&gt;YES！&lt;BR /&gt;Maybe only this way can solve it. Thanks brother.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 13:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938662#M1965399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-19T13:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938663#M1965400</link>
      <description>&lt;P&gt;Isn't&lt;EM&gt; B~BEGDA &amp;lt;= A~BEGDA - 1 the same as &lt;/EM&gt;&lt;EM&gt;B~BEGDA &amp;lt; A~BEGDA ?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;
&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;
&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 13:27:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938663#M1965400</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-03-19T13:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938664#M1965401</link>
      <description>&lt;P&gt;I think B~BEGDA &amp;lt;= A~BEGDA - 1 the same as B~BEGDA &amp;lt; A~BEGDA - 2.
&lt;BR /&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 05:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938664#M1965401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-20T05:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938665#M1965402</link>
      <description>&lt;P&gt;hmmm let's say A~BEGDA = 10&lt;/P&gt;&lt;P&gt;Then B~BEGDA &amp;lt;= 9 is the same as B~BEGDA &amp;lt; 10&lt;/P&gt;&lt;P&gt;Isn't it?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 05:52:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938665#M1965402</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-03-20T05:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938666#M1965403</link>
      <description>&lt;P&gt;YES!&lt;BR /&gt;Sorry for the last wrong words.&lt;/P&gt;&lt;P&gt;You're right.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;B~BEGDA &amp;lt;= A~BEGDA - 1 the same as B~BEGDA &amp;lt; A~BEGDA&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;This is OK.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;But the another &lt;/EM&gt;condition  B~ENDDA &amp;gt;= A~BEGDA - 1&lt;/P&gt;&lt;P&gt;I'm afraid that its not the same as B~ENDDA &amp;gt; A~BEGDA.&lt;/P&gt;&lt;P&gt;So...  You know , I have to split the SQLs...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 04:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938666#M1965403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-21T04:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938667#M1965404</link>
      <description>&lt;A href="https://answers.sap.com/users/456198/liuyiping.html"&gt;一平 刘&lt;/A&gt;:i think you can switch the position of B~ENDDA &amp;gt;= A~BEGDA - 1 to A~BEGDA &amp;lt; B~ENDDA...give it a try.</description>
      <pubDate>Thu, 21 Mar 2019 04:49:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938667#M1965404</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-03-21T04:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938668#M1965405</link>
      <description>&lt;A href="https://answers.sap.com/users/456198/liuyiping.html"&gt;一平 刘&lt;/A&gt; sorry I hadn't look at the second expression, you're right, it won't work.</description>
      <pubDate>Thu, 21 Mar 2019 06:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938668#M1965405</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-03-21T06:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938669#M1965406</link>
      <description>&lt;P&gt;EDIT: whole answer changed.&lt;/P&gt;&lt;P&gt;EDIT: this answer is valid for ABAP &amp;gt;= 7.51&lt;/P&gt;&lt;P&gt;To operate on dates, you have the &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abensql_date_func.htm"&gt;date functions&lt;/A&gt;, especially DATS_ADD_DAYS to add or &lt;STRONG&gt;subtract&lt;/STRONG&gt; days.&lt;/P&gt;&lt;P&gt;As &lt;A href="https://help.sap.com/doc/abapdocu_753_index_htm/7.53/en-US/index.htm?file=abenwhere_logexp.htm"&gt;No SQL expressions can be used on the right side of relational expression&lt;/A&gt;, you need to switch the order of the operands in your case.&lt;/P&gt;&lt;P&gt;To simplify, let's state that your starting SQL is :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; SELECT *
   FROM PA0302 AS A
  INNER JOIN PA0008 AS B
     ON B~PERNR = A~PERNR
    AND B~BEGDA &amp;lt;= A~BEGDA
    AND B~ENDDA &amp;gt;= A~BEGDA
   INTO TABLE @DATA(O_TB_COMMON).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then you change it to:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; SELECT *
   FROM PA0302 AS A
  INNER JOIN PA0008 AS B
     ON B~PERNR = A~PERNR
    AND DATS_ADD_DAYS( A~BEGDA, -1 ) &amp;gt;= B~BEGDA
    AND DATS_ADD_DAYS( A~BEGDA, -1 ) &amp;lt;= B~ENDDA
  INTO TABLE @DATA(O_TB_COMMON).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;
&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 08:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938669#M1965406</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-03-21T08:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938670#M1965407</link>
      <description>&lt;P&gt;In fact, there are date functions, but it's difficult to find them in the &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abapsql_expr.htm"&gt;ABAP documentation&lt;/A&gt;:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* sql_elem (supported elementary types)
* sql_func&lt;BR /&gt;*        SQL functions&lt;BR /&gt;*               Numeric functions (ABS, DIV, MOD, ...)&lt;BR /&gt;*               String functions (CONCAT, REPLACE, ...)&lt;BR /&gt;*               Coalesce function (COALESCE)&lt;BR /&gt;*        Special functions&lt;BR /&gt;*               Conversion functions (BINTOHEX, HEXTOBIN)&lt;BR /&gt;*               Date functions and time functions (DATS_IS_VALID, DATS_ADD_DAYS, ...)&lt;BR /&gt;* sql_num (arithmetic operators + - * /)&lt;BR /&gt;* sql_cast (CAST)&lt;BR /&gt;* sql_string (&amp;amp;&amp;amp;)&lt;BR /&gt;* sql_case (CASE ... WHEN ... [ELSE ...] END)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;cf my answer with DATS_ADD_DAYS.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 12:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938670#M1965407</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-03-21T12:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938671#M1965408</link>
      <description>&lt;P&gt;Thanks for you kindly answer very much.
&lt;/P&gt;&lt;P&gt;But I'm afraid that my ABAP release version is 740, so I can't use the new ABAP SQL.&lt;/P&gt;&lt;P&gt;Is that right? If the answer is 'Yes'.&lt;/P&gt;&lt;P&gt;I want to Accept your answer and share to others to learn it.&lt;/P&gt;&lt;P&gt;Thank you again. &lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 03:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938671#M1965408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-22T03:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: About ABAP SQL  join  expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938672#M1965409</link>
      <description>&lt;A href="https://answers.sap.com/users/456198/liuyiping.html"&gt;一平 刘&lt;/A&gt; Oh, right, it's only ABAP &amp;gt;= 7.51</description>
      <pubDate>Fri, 22 Mar 2019 13:50:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-abap-sql-join-expressions/m-p/11938672#M1965409</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-03-22T13:50:57Z</dc:date>
    </item>
  </channel>
</rss>

