<?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: at selection screen output validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341208#M1230210</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dude,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For screen fields handling we have a structure called SCREEN..by using this structure we have to handle this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

parameters: ps_parm as listbox visible length 10
                          user-command abc.
* Radio buttons
parameters: rb1 radiobutton group ab modif id bl2,
            rb2 radiobutton group ab modif id bl2,
            rb3 radiobutton group ab modif id bl3.

initialization.

* Populate list box values
  name = 'PS_PARM'.
  value-key = '1'. value-text = 'Line 1'. append value to list.
  value-key = '2'. value-text = 'Line 2'. append value to list.

  at selection-screen output.

* Set list box with value
  call function 'VRM_SET_VALUES'
    exporting
      id     = name
      values = list.
* Control the display of screen components
  loop at screen.
    if ps_parm = 1.
      if screen-name = 'RB1' or screen-name = 'RB2' .
        screen-invisible = 0.
      elseif screen-name = 'RB3'.
        screen-invisible = 1.
      endif.
      modify screen.
    elseif ps_parm = 2.      if screen-name = 'RB1' or screen-name = 'RB2' .
        screen-invisible = 1.
      elseif screen-name = 'RB3'.
        screen-invisible = 0.
      endif.
      modify screen.
    elseif ps_parm = space.
      rb1 = 'X'.
      clear: rb2,rb3.
      if screen-name = 'RB1' or screen-name = 'RB2' or
         screen-name = 'RB3'.        screen-invisible = 0.
        modify screen.
      endif.
    endif.  endloop.

 at selection-screen.
  if sscrfields-ucomm = 'ABC'.  endif.

  start-of-selection.

  write: / 'Parameter:', ps_parm.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2009 03:05:20 GMT</pubDate>
    <dc:creator>former_member632729</dc:creator>
    <dc:date>2009-03-06T03:05:20Z</dc:date>
    <item>
      <title>at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341205#M1230207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all experts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have requirement when user selects the download radio button then only the file path should be made mandatory . can be done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 02:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341205#M1230207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T02:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341206#M1230208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can give an error message 'Enter file path'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if r1 = 'X'.&lt;/P&gt;&lt;P&gt;*give error message here  of type E.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 02:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341206#M1230208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T02:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341207#M1230209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One suggestion is:&lt;/P&gt;&lt;P&gt;You can make the download file field non-editable..i mean, gray out the field first. And when download is selectes you can make it editable. This is possible by :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'XYZ'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt; Just try this once..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chamanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 03:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341207#M1230209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T03:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341208#M1230210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dude,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For screen fields handling we have a structure called SCREEN..by using this structure we have to handle this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

parameters: ps_parm as listbox visible length 10
                          user-command abc.
* Radio buttons
parameters: rb1 radiobutton group ab modif id bl2,
            rb2 radiobutton group ab modif id bl2,
            rb3 radiobutton group ab modif id bl3.

initialization.

* Populate list box values
  name = 'PS_PARM'.
  value-key = '1'. value-text = 'Line 1'. append value to list.
  value-key = '2'. value-text = 'Line 2'. append value to list.

  at selection-screen output.

* Set list box with value
  call function 'VRM_SET_VALUES'
    exporting
      id     = name
      values = list.
* Control the display of screen components
  loop at screen.
    if ps_parm = 1.
      if screen-name = 'RB1' or screen-name = 'RB2' .
        screen-invisible = 0.
      elseif screen-name = 'RB3'.
        screen-invisible = 1.
      endif.
      modify screen.
    elseif ps_parm = 2.      if screen-name = 'RB1' or screen-name = 'RB2' .
        screen-invisible = 1.
      elseif screen-name = 'RB3'.
        screen-invisible = 0.
      endif.
      modify screen.
    elseif ps_parm = space.
      rb1 = 'X'.
      clear: rb2,rb3.
      if screen-name = 'RB1' or screen-name = 'RB2' or
         screen-name = 'RB3'.        screen-invisible = 0.
        modify screen.
      endif.
    endif.  endloop.

 at selection-screen.
  if sscrfields-ucomm = 'ABC'.  endif.

  start-of-selection.

  write: / 'Parameter:', ps_parm.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 03:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341208#M1230210</guid>
      <dc:creator>former_member632729</dc:creator>
      <dc:date>2009-03-06T03:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341209#M1230211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the following code in at selecection-screen output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If download = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;screen-name = 'X'.&lt;/P&gt;&lt;P&gt;screen-input = 0.(screen-input has two options 0 and 1 : 0=no-display, 1= display)&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solve issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarsd,&lt;/P&gt;&lt;P&gt;Rajani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 03:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341209#M1230211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T03:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341210#M1230212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try this one..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check if the radio button is selected, then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'XXX'.-&amp;gt;name of the parameter name for ur filename&lt;/P&gt;&lt;P&gt;  screen-required = 1.&lt;/P&gt;&lt;P&gt;  modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leonard Chomi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 03:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341210#M1230212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T03:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341211#M1230213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on RB1.     "Where RB1 is ur radio button name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-name = 'file_path'.    "File_path is ur file paths selection screen element&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;screen-required = 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here screen-required will make ur file path as mandit field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 03:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341211#M1230213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T03:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341212#M1230214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can write the below logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: rb_file RADIOBUTTON GROUP g1,
            rb_other RADIOBUTTON GROUP g1.
PARAMETERS: p_file TYPE char50.

AT SELECTION-SCREEN ON RADIOBUTTON GROUP g1.
  LOOP AT SCREEN.
    IF screen-name = 'P_FILE'.
      IF rb_file EQ 'X'.
        screen-required = 1.
        MODIFY SCREEN.
      ELSE.
        screen-required = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manoj Kumar P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 03:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341212#M1230214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T03:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341213#M1230215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please find below, sample code for your requirement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : sa_fend RADIOBUTTON  GROUP radi USER-COMMAND inf,&lt;/P&gt;&lt;P&gt;             sa_bend RADIOBUTTON GROUP radi DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:  sa_flpth TYPE filename . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Input Physical Path if Front End Selected else Deactivated&lt;/P&gt;&lt;P&gt;  IF sa_fend = 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'SA_FLPTH'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSEIF sa_bend = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'SA_FLPTH'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 04:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341213#M1230215</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-03-06T04:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341214#M1230216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you take a radiobutton then it will be checked by default (if only one radiobutton is present on screen).&lt;/P&gt;&lt;P&gt;So make sure that you have more than one radiobuttons on screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this code:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : p_filename TYPE rlgrap-filename MODIF ID abc. " download file name parameter
PARAMETERS : p_rb1 RADIOBUTTON GROUP gp1, "for file download
             p_rb2 RADIOBUTTON GROUP gp1. "for other purpose

AT SELECTION-SCREEN OUTPUT.
  IF p_rb1 = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'ABC'. "for textbox (file download parameter)
        screen-required = 1. "make screen mandatory
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
  ELSE.
    LOOP AT SCREEN.
      IF screen-group1 = 'ABC'. "for textbox (file download parameter)
        screen-required = 0. "make screen not-mandatory
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 04:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341214#M1230216</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-06T04:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341215#M1230217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not working i tried . i have 2 radiobutton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 04:31:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341215#M1230217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T04:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen output validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341216#M1230218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then try this way:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : p_filename TYPE rlgrap-filename. " download file name parameter
PARAMETERS : p_rb1 RADIOBUTTON GROUP gp1 USER COMMAND abc, "for file download
             p_rb2 RADIOBUTTON GROUP gp1 DEFAULT 'X'. "for other purpose
 
AT SELECTION-SCREEN.
  IF p_rb1 = 'X'.
    IF p_filename IS INITIAL.
      MESSAGE 'specify file name' TYPE 'E'.
    ENDIF.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 04:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-output-validation/m-p/5341216#M1230218</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-06T04:38:29Z</dc:date>
    </item>
  </channel>
</rss>

