<?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 Generate missing fields with peek() not work in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938068#M77318</link>
    <description>&lt;P&gt;Hello, I'm trying to generate missing change rates for the future months in years. If the change rate is null, I need to add the rates from the last month.&amp;nbsp; I try using function peeek() but it seems not to work. Check the attached screenshot with the table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you please some idea?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I highlighted important parts of the code below..&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;SORDERQ:&lt;BR /&gt;LOAD&lt;BR /&gt;SOHNUM_0 as SO_Number,&lt;BR /&gt;ITMREF_0 as Item,&lt;BR /&gt;SOPLIN_0 as SO_LIN,&lt;BR /&gt;Num(QTY_0) as SOQ_QtyOrdered,&lt;BR /&gt;Date(("SHIDAT_0"), 'YYYY-MM-DD' ) as SO_ShipDate,&lt;BR /&gt;Date(("SDSHIDAT"), 'YYYY-MM-DD' ) as SD_ShipDate,&lt;BR /&gt;Year("SHIDAT_0") as Year,&lt;BR /&gt;Month("SHIDAT_0") as Month,&lt;BR /&gt;Date(("ORDDAT_0"), 'YYYY-MM-DD' ) as SO_OrderDate,&lt;BR /&gt;STOFCY_0 as Site,&lt;BR /&gt;ITMDES1_0 as ItemDesc,&lt;BR /&gt;SOQSTA_0 as Line_Status,&lt;BR /&gt;DEMSTA_0 as Status_In_Progress,&lt;BR /&gt;ORDSTA_0 as Order_Status,&lt;BR /&gt;NETPRI_0 as SO_NetPrice,&lt;BR /&gt;Num(SO_NETPRI_LOCAL) as SO_NETPRI_LOCAL,&lt;BR /&gt;Num(SHIQTY) as SHI_Qty,&lt;BR /&gt;BPCNAM_0 as Customer_Name,&lt;BR /&gt;FMI_0 as Product_Source,&lt;BR /&gt;TCLCOD_0 as Product_Category,&lt;BR /&gt;&lt;STRONG&gt;SHIDAT_0_SYNC as RateDate,&lt;/STRONG&gt;&lt;BR /&gt;FMINUM_0 as B2B_Num,&lt;BR /&gt;Date(Today(), 'MM-DD-YYYY') as Date_Today,&lt;BR /&gt;SHTQTY_0 as Shortage_Qty,&lt;BR /&gt;ALLQTY_0 as Allocation_Qty,&lt;BR /&gt;;&lt;BR /&gt;SQL select&lt;BR /&gt;Q.SOHNUM_0,&lt;BR /&gt;Q.ITMREF_0,&lt;BR /&gt;Q.SOPLIN_0,&lt;BR /&gt;Q.QTY_0,&lt;BR /&gt;Q.SHIDAT_0,&lt;BR /&gt;Q.STOFCY_0,&lt;BR /&gt;M.ITMDES1_0,&lt;BR /&gt;CASE&lt;BR /&gt;when Q.SOQSTA_0 = '1' then 'Pending'&lt;BR /&gt;when Q.SOQSTA_0 = '2' then 'Late' &lt;BR /&gt;when Q.SOQSTA_0 = '3' then 'Closed' &lt;BR /&gt;END as SOQSTA_0,&lt;BR /&gt;CASE&lt;BR /&gt;when Q.DEMSTA_0 = '1' then 'Firm'&lt;BR /&gt;when Q.DEMSTA_0 = '2' then 'Planned' &lt;BR /&gt;when Q.DEMSTA_0 = '3' then 'Suggested' &lt;BR /&gt;when Q.DEMSTA_0 = '4' then 'Closed' &lt;BR /&gt;END as DEMSTA_0,&lt;BR /&gt;CASE&lt;BR /&gt;WHEN SO.ORDSTA_0 = '1' then 'Open'&lt;BR /&gt;WHEN SO.ORDSTA_0 = '2' then 'Closed'&lt;BR /&gt;END as ORDSTA_0,&lt;BR /&gt;SO.ORDDAT_0,&lt;BR /&gt;SD.SHIDAT_0 as SDSHIDAT,&lt;BR /&gt;P.NETPRI_0,&lt;BR /&gt;CASE&lt;BR /&gt;when P.SALFCY_0 = 'PISRO' then P.NETPRI_0*SO.CHGRAT_0&amp;nbsp;&lt;BR /&gt;when P.SALFCY_0 = 'PILTD' then P.NETPRI_0*SO.CHGRAT_0&lt;BR /&gt;END as SO_NETPRI_LOCAL,&lt;BR /&gt;SD.QTY_0 as SHIQTY,&lt;BR /&gt;SO.BPCNAM_0,&lt;BR /&gt;Q.FMI_0,&lt;BR /&gt;CASE&lt;BR /&gt;WHEN Q.FMI_0 like '1' then 'Normal'&lt;BR /&gt;WHEN Q.FMI_0 like '2' then 'PO - Direct to customer'&lt;BR /&gt;WHEN Q.FMI_0 like '3' then 'PO - Receive and ship'&lt;BR /&gt;WHEN Q.FMI_0 like '4' then 'Transfer'&lt;BR /&gt;WHEN Q.FMI_0 like '5' then 'Work order'&lt;BR /&gt;END as FMI_0,&lt;BR /&gt;M.TCLCOD_0,&lt;BR /&gt;&lt;STRONG&gt;FORMAT(Q.SHIDAT_0,'yyyy-MM') as SHIDAT_0_SYNC,&lt;/STRONG&gt;&lt;BR /&gt;Q.FMINUM_0,&lt;BR /&gt;Q.SHTQTY_0,&lt;BR /&gt;Q.ALLQTY_0&lt;BR /&gt;&lt;BR /&gt;FROM x3.PICLIVE.SORDERQ as Q&lt;BR /&gt;inner join x3.PICLIVE.ITMMASTER as M on M.ITMREF_0 = Q.ITMREF_0&lt;BR /&gt;inner join x3.PICLIVE.SORDER as SO on Q.SOHNUM_0 = SO.SOHNUM_0&lt;BR /&gt;left join x3.PICLIVE.SDELIVERYD as SD on Q.SOHNUM_0 = SD.SOHNUM_0 and Q.ITMREF_0 = SD.ITMREF_0 and SD.SOPLIN_0 = Q.SOPLIN_0&lt;BR /&gt;inner join x3.PICLIVE.SORDERP as P on Q.SOHNUM_0 = P.SOHNUM_0 and Q.SOPLIN_0 = P.SOPLIN_0 and Q.SOQSEQ_0 = P.SOPSEQ_0&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;TABCHANGE:&lt;BR /&gt;LOAD &lt;BR /&gt;&lt;STRONG&gt;"CHGRAT_0" as BaseChgRat,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;CHGSTRDAT_0 as RateDate,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If( IsNull( CHGRAT_0 ), Peek( 'Field' ), CHGRAT_0 ) as Field,&lt;/STRONG&gt;&lt;BR /&gt;;&lt;BR /&gt;SQL SELECT CURDEN_0,&lt;BR /&gt;CUR_0,&lt;BR /&gt;CHGRAT_0,&lt;BR /&gt;&lt;STRONG&gt;FORMAT(CHGSTRDAT_0,'yyyy-MM') as CHGSTRDAT_0&lt;/STRONG&gt;&lt;BR /&gt;FROM x3.PICLIVE.TABCHANGE&lt;BR /&gt;where CURDEN_0 like 'GBP' and //destination currency,&lt;BR /&gt;CUR_0 like 'CZK' and &lt;BR /&gt;CHGTYP_0 = 1; // Rate Type - Daily rate&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jun 2022 06:04:55 GMT</pubDate>
    <dc:creator>jarokall</dc:creator>
    <dc:date>2022-06-01T06:04:55Z</dc:date>
    <item>
      <title>Generate missing fields with peek() not work</title>
      <link>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938068#M77318</link>
      <description>&lt;P&gt;Hello, I'm trying to generate missing change rates for the future months in years. If the change rate is null, I need to add the rates from the last month.&amp;nbsp; I try using function peeek() but it seems not to work. Check the attached screenshot with the table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you please some idea?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I highlighted important parts of the code below..&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;SORDERQ:&lt;BR /&gt;LOAD&lt;BR /&gt;SOHNUM_0 as SO_Number,&lt;BR /&gt;ITMREF_0 as Item,&lt;BR /&gt;SOPLIN_0 as SO_LIN,&lt;BR /&gt;Num(QTY_0) as SOQ_QtyOrdered,&lt;BR /&gt;Date(("SHIDAT_0"), 'YYYY-MM-DD' ) as SO_ShipDate,&lt;BR /&gt;Date(("SDSHIDAT"), 'YYYY-MM-DD' ) as SD_ShipDate,&lt;BR /&gt;Year("SHIDAT_0") as Year,&lt;BR /&gt;Month("SHIDAT_0") as Month,&lt;BR /&gt;Date(("ORDDAT_0"), 'YYYY-MM-DD' ) as SO_OrderDate,&lt;BR /&gt;STOFCY_0 as Site,&lt;BR /&gt;ITMDES1_0 as ItemDesc,&lt;BR /&gt;SOQSTA_0 as Line_Status,&lt;BR /&gt;DEMSTA_0 as Status_In_Progress,&lt;BR /&gt;ORDSTA_0 as Order_Status,&lt;BR /&gt;NETPRI_0 as SO_NetPrice,&lt;BR /&gt;Num(SO_NETPRI_LOCAL) as SO_NETPRI_LOCAL,&lt;BR /&gt;Num(SHIQTY) as SHI_Qty,&lt;BR /&gt;BPCNAM_0 as Customer_Name,&lt;BR /&gt;FMI_0 as Product_Source,&lt;BR /&gt;TCLCOD_0 as Product_Category,&lt;BR /&gt;&lt;STRONG&gt;SHIDAT_0_SYNC as RateDate,&lt;/STRONG&gt;&lt;BR /&gt;FMINUM_0 as B2B_Num,&lt;BR /&gt;Date(Today(), 'MM-DD-YYYY') as Date_Today,&lt;BR /&gt;SHTQTY_0 as Shortage_Qty,&lt;BR /&gt;ALLQTY_0 as Allocation_Qty,&lt;BR /&gt;;&lt;BR /&gt;SQL select&lt;BR /&gt;Q.SOHNUM_0,&lt;BR /&gt;Q.ITMREF_0,&lt;BR /&gt;Q.SOPLIN_0,&lt;BR /&gt;Q.QTY_0,&lt;BR /&gt;Q.SHIDAT_0,&lt;BR /&gt;Q.STOFCY_0,&lt;BR /&gt;M.ITMDES1_0,&lt;BR /&gt;CASE&lt;BR /&gt;when Q.SOQSTA_0 = '1' then 'Pending'&lt;BR /&gt;when Q.SOQSTA_0 = '2' then 'Late' &lt;BR /&gt;when Q.SOQSTA_0 = '3' then 'Closed' &lt;BR /&gt;END as SOQSTA_0,&lt;BR /&gt;CASE&lt;BR /&gt;when Q.DEMSTA_0 = '1' then 'Firm'&lt;BR /&gt;when Q.DEMSTA_0 = '2' then 'Planned' &lt;BR /&gt;when Q.DEMSTA_0 = '3' then 'Suggested' &lt;BR /&gt;when Q.DEMSTA_0 = '4' then 'Closed' &lt;BR /&gt;END as DEMSTA_0,&lt;BR /&gt;CASE&lt;BR /&gt;WHEN SO.ORDSTA_0 = '1' then 'Open'&lt;BR /&gt;WHEN SO.ORDSTA_0 = '2' then 'Closed'&lt;BR /&gt;END as ORDSTA_0,&lt;BR /&gt;SO.ORDDAT_0,&lt;BR /&gt;SD.SHIDAT_0 as SDSHIDAT,&lt;BR /&gt;P.NETPRI_0,&lt;BR /&gt;CASE&lt;BR /&gt;when P.SALFCY_0 = 'PISRO' then P.NETPRI_0*SO.CHGRAT_0&amp;nbsp;&lt;BR /&gt;when P.SALFCY_0 = 'PILTD' then P.NETPRI_0*SO.CHGRAT_0&lt;BR /&gt;END as SO_NETPRI_LOCAL,&lt;BR /&gt;SD.QTY_0 as SHIQTY,&lt;BR /&gt;SO.BPCNAM_0,&lt;BR /&gt;Q.FMI_0,&lt;BR /&gt;CASE&lt;BR /&gt;WHEN Q.FMI_0 like '1' then 'Normal'&lt;BR /&gt;WHEN Q.FMI_0 like '2' then 'PO - Direct to customer'&lt;BR /&gt;WHEN Q.FMI_0 like '3' then 'PO - Receive and ship'&lt;BR /&gt;WHEN Q.FMI_0 like '4' then 'Transfer'&lt;BR /&gt;WHEN Q.FMI_0 like '5' then 'Work order'&lt;BR /&gt;END as FMI_0,&lt;BR /&gt;M.TCLCOD_0,&lt;BR /&gt;&lt;STRONG&gt;FORMAT(Q.SHIDAT_0,'yyyy-MM') as SHIDAT_0_SYNC,&lt;/STRONG&gt;&lt;BR /&gt;Q.FMINUM_0,&lt;BR /&gt;Q.SHTQTY_0,&lt;BR /&gt;Q.ALLQTY_0&lt;BR /&gt;&lt;BR /&gt;FROM x3.PICLIVE.SORDERQ as Q&lt;BR /&gt;inner join x3.PICLIVE.ITMMASTER as M on M.ITMREF_0 = Q.ITMREF_0&lt;BR /&gt;inner join x3.PICLIVE.SORDER as SO on Q.SOHNUM_0 = SO.SOHNUM_0&lt;BR /&gt;left join x3.PICLIVE.SDELIVERYD as SD on Q.SOHNUM_0 = SD.SOHNUM_0 and Q.ITMREF_0 = SD.ITMREF_0 and SD.SOPLIN_0 = Q.SOPLIN_0&lt;BR /&gt;inner join x3.PICLIVE.SORDERP as P on Q.SOHNUM_0 = P.SOHNUM_0 and Q.SOPLIN_0 = P.SOPLIN_0 and Q.SOQSEQ_0 = P.SOPSEQ_0&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;TABCHANGE:&lt;BR /&gt;LOAD &lt;BR /&gt;&lt;STRONG&gt;"CHGRAT_0" as BaseChgRat,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;CHGSTRDAT_0 as RateDate,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If( IsNull( CHGRAT_0 ), Peek( 'Field' ), CHGRAT_0 ) as Field,&lt;/STRONG&gt;&lt;BR /&gt;;&lt;BR /&gt;SQL SELECT CURDEN_0,&lt;BR /&gt;CUR_0,&lt;BR /&gt;CHGRAT_0,&lt;BR /&gt;&lt;STRONG&gt;FORMAT(CHGSTRDAT_0,'yyyy-MM') as CHGSTRDAT_0&lt;/STRONG&gt;&lt;BR /&gt;FROM x3.PICLIVE.TABCHANGE&lt;BR /&gt;where CURDEN_0 like 'GBP' and //destination currency,&lt;BR /&gt;CUR_0 like 'CZK' and &lt;BR /&gt;CHGTYP_0 = 1; // Rate Type - Daily rate&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 06:04:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938068#M77318</guid>
      <dc:creator>jarokall</dc:creator>
      <dc:date>2022-06-01T06:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Generate missing fields with peek() not work</title>
      <link>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938094#M77319</link>
      <description>&lt;P&gt;It's difficult to say without having the data...&lt;/P&gt;&lt;P&gt;But I have two suggestions:&lt;BR /&gt;1. Add "Order By CHGSTRDAT_0 Asc" to the SELECT statement, so that you know that the dates come in the right order.&lt;BR /&gt;2. Add "IsNull(CHGRAT_0) as DebugField," to the Load statement, to test that you really have NULLs.&lt;BR /&gt;(The field perhaps contains empty strings? If so, "IsNull(CHGRAT_0)" will return FALSE.)&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 07:09:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938094#M77319</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2022-06-01T07:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Generate missing fields with peek() not work</title>
      <link>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938109#M77320</link>
      <description>&lt;P&gt;Thank you for your response.&lt;/P&gt;
&lt;P&gt;Tried order and added Debug Field. It seems, there is emty string?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I added a condition for empty string but still does not work.&lt;/P&gt;
&lt;P&gt;If( IsNull( CHGRAT_0 ) or &lt;STRONG&gt;CHGRAT_0 ='',&lt;/STRONG&gt; Peek( 'Field' ), CHGRAT_0 ) as Field&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 07:35:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938109#M77320</guid>
      <dc:creator>jarokall</dc:creator>
      <dc:date>2022-06-01T07:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Generate missing fields with peek() not work</title>
      <link>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938115#M77321</link>
      <description>&lt;P&gt;You have a data problem. Since the DebugField doesn't have any values at all (not even 'FALSE'), it means that the table "x3.PICLIVE.TABCHANGE" doesn't have these dates (or the dates are removed by the WHERE clause).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Henric_Cronstrm_0-1654069463782.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/80761iEF9A9E2B49D07823/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Henric_Cronstrm_0-1654069463782.png" alt="Henric_Cronstrm_0-1654069463782.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you need to populate these dates with values, you may need to join the two tables before using peek. Take a look at&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/How-to-populate-a-sparsely-populated-field/ba-p/1470637" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/How-to-populate-a-sparsely-populated-field/ba-p/1470637&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 07:48:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938115#M77321</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2022-06-01T07:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Generate missing fields with peek() not work</title>
      <link>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938120#M77322</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;This looks like the table &lt;STRONG&gt;"SORDERQ" &lt;/STRONG&gt;has data for dates from&amp;nbsp; &amp;nbsp;&lt;STRONG&gt;2021-07 to 2024-06&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;but the table&amp;nbsp; &amp;nbsp;&lt;STRONG&gt;x3.PICLIVE.TABCHANGE&lt;/STRONG&gt;&amp;nbsp; &amp;nbsp;only has data for dates from&amp;nbsp; &lt;STRONG&gt;2021-07 to 2022-06&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;You need to get all the dates in one table first before using peek() , otherwise there is nothing to peek() because&amp;nbsp;&lt;STRONG&gt;CHGRAT_0&lt;SPAN&gt;&amp;nbsp; is never null as the dates from&amp;nbsp; &amp;nbsp;2022-07&amp;nbsp; to 2024-06 don't exist in the table&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;FONT color="#000000"&gt;Add below script after loading "SORDERQ"&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tempRates:
Load Distinct RateDate Resident SORDERQ;

Left Join(tempRates)
Load  CHGSTRDAT_0 as RateDate
,CHGRAT_0 as BaseChgRat
SQL SELECT
CHGRAT_0,
FORMAT(CHGSTRDAT_0,'yyyy-MM') as CHGSTRDAT_0
FROM x3.PICLIVE.TABCHANGE
where CURDEN_0 like 'GBP' and //destination currency,
CUR_0 like 'CZK' and
CHGTYP_0 = 1; // Rate Type - Daily rate

TABCHANGE:
Load 
RateDate 
,BaseChgRat
,if(len(BaseChgRat),BaseChgRat,peek('newBaseChgRat')) as  newBaseChgRat
,Resident tempRates
Order by RateDate ASC;

Drop table tempRates;
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 01 Jun 2022 07:44:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generate-missing-fields-with-peek-not-work/m-p/1938120#M77322</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-06-01T07:44:53Z</dc:date>
    </item>
  </channel>
</rss>

