<?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: SQL Query not working while only input charg in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612147#M2011889</link>
    <description>&lt;P&gt;hi sandra,&lt;/P&gt;&lt;P&gt;  range_werks = COND #( WHEN p_plant IS NOT INITIAL THEN ( sign = 'I' option = 'EQ' low = p_plant ) ).&lt;/P&gt;&lt;P&gt;this line showing an error.&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jun 2022 05:57:31 GMT</pubDate>
    <dc:creator>shahad009</dc:creator>
    <dc:date>2022-06-06T05:57:31Z</dc:date>
    <item>
      <title>SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612134#M2011876</link>
      <description>&lt;P&gt;Hi experts,&lt;/P&gt;
  &lt;P&gt;I wrote a simple query &lt;/P&gt; SELECT
  &lt;BR /&gt; werks,
  &lt;BR /&gt; lgort,
  &lt;BR /&gt; matnr,
  &lt;BR /&gt; charg,
  &lt;BR /&gt; ersda,
  &lt;BR /&gt; clabs,
  &lt;BR /&gt; cinsm,
  &lt;BR /&gt; cspem,
  &lt;BR /&gt; concat( matnr, charg ) AS merge
  &lt;BR /&gt; FROM mchb
  &lt;BR /&gt; WHERE lgort = @p_store AND
  &lt;BR /&gt; werks = @p_plant AND
  &lt;BR /&gt; matnr IN @s_matnr AND
  &lt;BR /&gt; charg IN @s_batch AND
  &lt;BR /&gt; ( clabs &amp;gt; 0 OR cinsm &amp;gt; 0 OR cspem &amp;gt; 0 )
  &lt;BR /&gt;
  &lt;P&gt; INTO TABLE @DATA(it_mchb).&lt;/P&gt;
  &lt;P&gt;But its not fetching any data while I am only giving storage location in the selection screen. If i give plant and storage location the query is working fine. Can anyone tell me why this is happening?&lt;/P&gt;
  &lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 04:55:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612134#M2011876</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-05T04:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612135#M2011877</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please try below query.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT&lt;BR /&gt;werks,&lt;BR /&gt;lgort,&lt;BR /&gt;matnr,&lt;BR /&gt;charg,&lt;BR /&gt;ersda,&lt;BR /&gt;clabs,&lt;BR /&gt;cinsm,&lt;BR /&gt;cspem,&lt;BR /&gt;concat( matnr, charg ) AS merge&lt;BR /&gt;FROM mchb&lt;BR /&gt;WHERE lgort = @p_store OR&lt;BR /&gt;werks = @p_plant AND&lt;BR /&gt;matnr IN @s_matnr AND&lt;BR /&gt;charg IN @s_batch AND&lt;BR /&gt;( clabs &amp;gt; 0 OR cinsm &amp;gt; 0 OR cspem &amp;gt; 0 )&lt;BR /&gt;INTO TABLE @DATA(it_mchb).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anuja Kawadiwale &lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 05:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612135#M2011877</guid>
      <dc:creator>anujawani242683</dc:creator>
      <dc:date>2022-06-05T05:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612136#M2011878</link>
      <description>&lt;P&gt;Hi Shahad,&lt;/P&gt;&lt;P&gt;You have written the AND condition in where clause.&lt;/P&gt;&lt;P&gt;Previously it was with AND condition. If you want plant and storage location both needs to be given then only give AND condition between them. And if you want either one of them if entered then also query should work then use OR between them.&lt;/P&gt;&lt;P&gt;Previously code was like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Where lgort = @p_store AND werks = @p_plant
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Jun 2022 05:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612136#M2011878</guid>
      <dc:creator>anujawani242683</dc:creator>
      <dc:date>2022-06-05T05:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612137#M2011879</link>
      <description>&lt;P&gt;Hi Anuja,&lt;/P&gt;&lt;P&gt;Understood. Storage location is the only mandatory field in my report so when i put value only in storage location and the rest of the fields were empty AND was not working . Hence Or worked.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 05:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612137#M2011879</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-05T05:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612138#M2011880</link>
      <description>&lt;P&gt;EDIT: taking into account that P_STORE is mandatory (only P_PLANT is optional).&lt;/P&gt;&lt;P&gt;As said previously, the condition with WERKS is wrong.&lt;/P&gt;&lt;P&gt;Prefer using range like below, if you have WERKS IN RANGE and the range is empty, it's like having no condition on WERKS :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: range_werks LIKE RANGE OF p_plant.

range_werks = COND #( WHEN p_plant IS NOT INITIAL 
                      THEN VALUE #( ( sign = 'I' option = 'EQ' low = p_plant ) ) ).

SELECT werks, lgort, matnr, charg, ersda, clabs, cinsm, cspem,
       concat( matnr, charg ) AS merge
    FROM mchb
    WHERE lgort = @p_store AND
          werks IN @range_werks AND
          matnr IN @s_matnr AND
          charg IN @s_batch AND
          ( clabs &amp;gt; 0 OR cinsm &amp;gt; 0 OR cspem &amp;gt; 0 )
INTO TABLE @DATA(it_mchb).&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Jun 2022 09:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612138#M2011880</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-05T09:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612139#M2011881</link>
      <description>&lt;P&gt;Wrong solution, it won't work if the user enters incompatible P_STORE and P_PLANT values.&lt;/P&gt;&lt;P&gt;Instead you should use range tables (LGORT IN RANGE_LGORT). See my answer.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 09:14:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612139#M2011881</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-05T09:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612140#M2011882</link>
      <description>&lt;P&gt;Hi Sandra,&lt;/P&gt;&lt;P&gt;According to my requirement these two has to be parameters not select-options.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 09:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612140#M2011882</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-05T09:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612141#M2011883</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;shahad009&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;First reason it's wrong is because the current solution means:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WHERE lgort = @p_store
   OR ( werks = @p_plant AND
        matnr IN @s_matnr AND
        charg IN @s_batch AND
        ( clabs &amp;gt; 0 OR cinsm &amp;gt; 0 OR cspem &amp;gt; 0 ) )
INTO TABLE @DATA(it_mchb).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But even if you fix the parentheses:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WHERE ( lgort = @p_store OR werks = @p_plant ) AND
        matnr IN @s_matnr AND
        charg IN @s_batch AND
        ( clabs &amp;gt; 0 OR cinsm &amp;gt; 0 OR cspem &amp;gt; 0 ) )
INTO TABLE @DATA(it_mchb).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the result will be wrong, for instance we have table MCHB like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        LGORT  WERKS
Line 1  abc    123
Line 2  abc    456
Line 3  def    123&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;selected data will be wrong depending on user input:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;         P_STORE  P_PLANT  Expected result  Actual result      Status
Case 1   abc      123      Line 1           Lines 1, 2 and 3   KO      &amp;lt;==============
Case 2   abc               Lines 1 and 2    Lines 1 and 2      OK&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;EDIT: considering that P_STORE is mandatory.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 09:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612141#M2011883</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-05T09:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612142#M2011884</link>
      <description>&lt;P&gt;P_STORE and P_WERKS are "PARAMETERS", not "SELECT-OPTIONS". Don't confuse Select-Options and Range Tables.&lt;/P&gt;&lt;P&gt;With the solution I proposed, the result will be correct, for instance we have table MCHB like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        LGORT  WERKS
Line 1  abc    123
Line 2  abc    456&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;selected data will be correct whatever user input:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;         P_STORE  P_PLANT  Produced WHERE with range tables    Expected result  Actual result  Status
Case 1   abc      123      lgort = 'abc' and werks = '123'     Line 1           Line 1         OK
Case 2   abc               lgort = 'abc'                       Lines 1 and 2    Lines 1 and 2  OK
Case 3            123      werks = '123'                       Line 1           Line 1         OK&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Jun 2022 09:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612142#M2011884</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-05T09:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612143#M2011885</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Can You pls correct me with the query?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; SELECT&lt;BR /&gt;   a~werks,&lt;BR /&gt;   a~lgort,&lt;BR /&gt;   a~matnr,&lt;BR /&gt;   a~charg,&lt;BR /&gt;   a~ersda,&lt;BR /&gt;   a~clabs,&lt;BR /&gt;   a~cinsm,&lt;BR /&gt;   a~cspem,&lt;BR /&gt;   b~maktx,&lt;BR /&gt;   c~meins,&lt;BR /&gt;   concat( a~matnr, a~charg ) AS merge&lt;BR /&gt;   FROM mchb AS a&lt;BR /&gt;   INNER JOIN makt AS b&lt;BR /&gt;   ON a~matnr = b~matnr&lt;BR /&gt;   INNER JOIN mara AS c&lt;BR /&gt;   ON a~matnr = c~matnr&lt;BR /&gt;   WHERE a~lgort = @p_store OR&lt;BR /&gt;   a~werks = @p_plant AND&lt;BR /&gt;   a~matnr IN @s_matnr AND&lt;BR /&gt;   a~charg IN @s_batch AND&lt;BR /&gt;   ( a~clabs &amp;gt; 0 OR a~cinsm &amp;gt; 0 OR a~cspem &amp;gt; 0 )&lt;BR /&gt;   INTO TABLE @DATA(it_mchb).&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 09:52:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612143#M2011885</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-05T09:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612144#M2011886</link>
      <description>&lt;P&gt;hi sandra,'&lt;/P&gt;&lt;P&gt;lgort can;t be empty.. its a mandatory field.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 10:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612144#M2011886</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-05T10:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612145#M2011887</link>
      <description>&lt;P&gt;Answer simplified to consider that P_STORE is mandatory.&lt;/P&gt;&lt;P&gt;For instance we have table MCHB like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        LGORT  WERKS
Line 1  abc    123
Line 2  abc    456
Line 3  def    123
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;selected data will be as below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;         P_STORE  P_PLANT  Produced WHERE with range tables    Expected result   Actual result    Status
Case 1   abc      123      lgort = 'abc' and werks = '123'     Line 1            Line 1           OK
Case 2   abc               lgort = 'abc'                       Lines 1 and 2     Lines 1 and 2    OK&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Jun 2022 10:25:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612145#M2011887</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-05T10:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612146#M2011888</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; ,&lt;/P&gt;&lt;P&gt;I have used parenthesis like this  and its working fine for me.&lt;/P&gt;&lt;P&gt;   SELECT&lt;BR /&gt;   a~werks,&lt;BR /&gt;   a~lgort,&lt;BR /&gt;   a~matnr,&lt;BR /&gt;   a~charg,&lt;BR /&gt;   a~ersda,&lt;BR /&gt;   a~clabs,&lt;BR /&gt;   a~cinsm,&lt;BR /&gt;   a~cspem,&lt;BR /&gt;   b~maktx,&lt;BR /&gt;   c~meins,&lt;BR /&gt;   concat( a~matnr, a~charg ) AS merge&lt;BR /&gt;   FROM mchb AS a&lt;BR /&gt;   INNER JOIN makt AS b&lt;BR /&gt;   ON a~matnr = b~matnr&lt;BR /&gt;   INNER JOIN mara AS c&lt;BR /&gt;   ON a~matnr = c~matnr&lt;BR /&gt;   WHERE ( a~lgort = @p_store OR a~werks = @p_plant ) AND&lt;BR /&gt;   a~matnr IN @s_matnr AND&lt;BR /&gt;   a~charg IN @s_batch AND&lt;BR /&gt;   ( a~clabs &amp;gt; 0 OR a~cinsm &amp;gt; 0 OR a~cspem &amp;gt; 0 )&lt;BR /&gt;   INTO TABLE @DATA(it_mchb).&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 04:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612146#M2011888</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-06T04:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612147#M2011889</link>
      <description>&lt;P&gt;hi sandra,&lt;/P&gt;&lt;P&gt;  range_werks = COND #( WHEN p_plant IS NOT INITIAL THEN ( sign = 'I' option = 'EQ' low = p_plant ) ).&lt;/P&gt;&lt;P&gt;this line showing an error.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 05:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612147#M2011889</guid>
      <dc:creator>shahad009</dc:creator>
      <dc:date>2022-06-06T05:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612148#M2011890</link>
      <description>&lt;P&gt;Hi Sandra,&lt;/P&gt;&lt;P&gt;For me also this code is showing error. Not working.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anuja Kawadiwale&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 06:18:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612148#M2011890</guid>
      <dc:creator>anujawani242683</dc:creator>
      <dc:date>2022-06-06T06:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612149#M2011891</link>
      <description>&lt;SPAN class="mention-scrubbed"&gt;anujawani2426&lt;/SPAN&gt;&lt;P&gt;Thanks for notifying. Sorry, I do the same kind of "typo" all the time. ABAP fixed.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 07:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612149#M2011891</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-06T07:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query not working while only input charg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612150#M2011892</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;shahad009&lt;/SPAN&gt; I was considering that the test case 1 was not as expected but it's up to you of course.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 07:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-query-not-working-while-only-input-charg/m-p/12612150#M2011892</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-06T07:35:35Z</dc:date>
    </item>
  </channel>
</rss>

