<?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 BAPI_GOODSMVT_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615592#M275760</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, All I am new to BAPI can one suggest me how to do this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i need to create a function module Z_BAPI_GOODSMVT_CREATE in which i should call BAPI_GOODSMVT_CREATE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the reason for this is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Whenever a file is received, SAP XI will call the new function module Z_BAPI_GOODSMVT_CREATE  to accomplish a goods movement and equipment record creation.  this function will, in large part, consist of simply passing parameters to and from BAPI_GOODSMVT_CREATE.  In addition, this process will need to derive the plant and storage location prior to calling the BAPI, and Z_BAPI_GOODSMVT_CREATE  need to send an email alert to a distribution list should the BAPI fail for any reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program should process every item on the file, when there is an error in processing any of the items, an email (subject and email content) should send out according to the alias in the email table. Then the program should continue to process the items in the file until the end of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Oct 2006 14:57:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-18T14:57:22Z</dc:date>
    <item>
      <title>BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615592#M275760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, All I am new to BAPI can one suggest me how to do this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i need to create a function module Z_BAPI_GOODSMVT_CREATE in which i should call BAPI_GOODSMVT_CREATE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the reason for this is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Whenever a file is received, SAP XI will call the new function module Z_BAPI_GOODSMVT_CREATE  to accomplish a goods movement and equipment record creation.  this function will, in large part, consist of simply passing parameters to and from BAPI_GOODSMVT_CREATE.  In addition, this process will need to derive the plant and storage location prior to calling the BAPI, and Z_BAPI_GOODSMVT_CREATE  need to send an email alert to a distribution list should the BAPI fail for any reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program should process every item on the file, when there is an error in processing any of the items, an email (subject and email content) should send out according to the alias in the email table. Then the program should continue to process the items in the file until the end of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 14:57:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615592#M275760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T14:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615593#M275761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ars,&lt;/P&gt;&lt;P&gt; The algorithm would be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_GOODSMVT_CREATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      goodsmvt_header = header&lt;/P&gt;&lt;P&gt;      goodsmvt_code   = c_gmcode&lt;/P&gt;&lt;P&gt;      TESTRUN         = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      goodsmvt_item   = items&lt;/P&gt;&lt;P&gt;      return          = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if not lt_return[] is initial.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Error in creating mat doc&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*Create the text in the it_htm internal table.&lt;/P&gt;&lt;P&gt;  call function 'SO_NEW_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      document_data              = w_doc_data&lt;/P&gt;&lt;P&gt;      put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;      COMMIT_WORK                = 'X'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      object_content             = it_htm&lt;/P&gt;&lt;P&gt;      receivers                  = t_receivers&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;      document_not_sent          = 2&lt;/P&gt;&lt;P&gt;      document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;      operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;      parameter_error            = 5&lt;/P&gt;&lt;P&gt;      x_error                    = 6&lt;/P&gt;&lt;P&gt;      enqueue_error              = 7&lt;/P&gt;&lt;P&gt;      others                     = 8.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 15:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615593#M275761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T15:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615594#M275762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Design the Z_BAPI_GOODSMVT_CREATE with all the import/export/table as like that of BAPI_GOODSMVT_CREATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below code for how to call BAPI_GOODSMVT_CREATE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header Data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      v_header-pstng_date = sy-datum.&lt;/P&gt;&lt;P&gt;      v_header-doc_date = sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Code Group&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      v_gm_code-gm_code = '03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******&lt;STRONG&gt;Mandatory fields passed into BAPI&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;      CLEAR i_items[].&lt;/P&gt;&lt;P&gt;      wa_items-material  = wa_mseg1-matnr.&lt;/P&gt;&lt;P&gt;      wa_items-plant     = wa_mseg1-werks.&lt;/P&gt;&lt;P&gt;      wa_items-stge_loc  = wa_mseg1-lgort.&lt;/P&gt;&lt;P&gt;      wa_items-move_type = wa_mseg1-bwart.&lt;/P&gt;&lt;P&gt;      wa_items-entry_qnt = wa_mseg1-lossquantity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      wa_items-costcenter = 'SC120300'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND wa_items TO i_items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          goodsmvt_header             = v_header&lt;/P&gt;&lt;P&gt;          goodsmvt_code               = v_gm_code&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TESTRUN                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;       goodsmvt_headret            = wa_headret&lt;/P&gt;&lt;P&gt;           materialdocument        = wa_matdoc&lt;/P&gt;&lt;P&gt;           matdocumentyear         = wa_matdocyr&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          goodsmvt_item               = i_items&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GOODSMVT_SERIALNUMBER       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        return                      = i_return_goods  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the code for mailing to distribution list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM &amp;lt;b&amp;gt;'SO_NEW_DOCUMENT_ATT_SEND_API1'&amp;lt;/b&amp;gt; is used to send mails to distribution list with rec_type = 'C'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;Sending mails to distribution list&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;    PERFORM f1001_mail_distribution_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  f1001_mail_Distribution_list&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f1001_mail_distribution_list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lws_docdata   LIKE sodocchgi1,&lt;/P&gt;&lt;P&gt;        li_objpack    LIKE sopcklsti1 OCCURS  1 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        li_objhead    LIKE solisti1   OCCURS  1 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        li_objtxt     LIKE solisti1   OCCURS 10 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        li_objbin     LIKE solisti1   OCCURS 10 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        li_objhex     LIKE solix      OCCURS 10 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        li_reclist    LIKE somlreci1  OCCURS  1 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lws_tab_lines  TYPE i,&lt;/P&gt;&lt;P&gt;        lws_doc_size   TYPE i,&lt;/P&gt;&lt;P&gt;        lws_att_type   LIKE soodk-objtp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: lws_docdata, li_objpack, li_objhead, li_objtxt, li_objbin,&lt;/P&gt;&lt;P&gt;       li_objhex, li_reclist, lws_tab_lines, lws_doc_size, lws_att_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH: li_objpack, li_objhead, li_objtxt, li_objbin, li_objhex,&lt;/P&gt;&lt;P&gt;           li_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lws_docdata-obj_name  = text-019.            "EUC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE co_01 text-018 co_10 text-018 ws_conf_year&lt;/P&gt;&lt;P&gt;                                             INTO ws_conf_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE text-006 ws_conf_date INTO lws_docdata-obj_descr&lt;/P&gt;&lt;P&gt;                                             SEPARATED BY space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE text-007 ws_conf_date text-008 INTO li_objtxt&lt;/P&gt;&lt;P&gt;                                             SEPARATED BY space.&lt;/P&gt;&lt;P&gt;  APPEND li_objtxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE text-009 text-010 ws_conf_date INTO li_objtxt&lt;/P&gt;&lt;P&gt;                                             SEPARATED BY space.&lt;/P&gt;&lt;P&gt;  APPEND li_objtxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE li_objtxt LINES lws_tab_lines.&lt;/P&gt;&lt;P&gt;  READ     TABLE li_objtxt INDEX lws_tab_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lws_docdata-doc_size = ( lws_tab_lines - 1 ) * 255 +&lt;/P&gt;&lt;P&gt;                                                  STRLEN( li_objtxt ).&lt;/P&gt;&lt;P&gt;  CLEAR li_objpack-transf_bin.&lt;/P&gt;&lt;P&gt;  li_objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;  li_objpack-head_num   = 0.&lt;/P&gt;&lt;P&gt;  li_objpack-body_start = 1.&lt;/P&gt;&lt;P&gt;  li_objpack-body_num   = lws_tab_lines.&lt;/P&gt;&lt;P&gt;  li_objpack-doc_type   = text-020.              "RAW&lt;/P&gt;&lt;P&gt;  APPEND li_objpack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  li_reclist-receiver = text-014.                "SGD_BUS_ANLT&lt;/P&gt;&lt;P&gt;  li_reclist-rec_type = text-021.                "C&lt;/P&gt;&lt;P&gt;  APPEND li_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  li_reclist-receiver = text-013.                "SGD_SAL_MNGR&lt;/P&gt;&lt;P&gt;  li_reclist-rec_type = text-021.                "C&lt;/P&gt;&lt;P&gt;  APPEND li_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  li_reclist-receiver = text-012.                "SGD_SAL_SUPT&lt;/P&gt;&lt;P&gt;  li_reclist-rec_type = text-021.                "C&lt;/P&gt;&lt;P&gt;  APPEND li_reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; li_reclist-receiver = sy-uname.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; li_reclist-rec_type = text-022.                "B&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; APPEND li_reclist.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      document_data              = lws_docdata&lt;/P&gt;&lt;P&gt;      put_in_outbox              = c_x&lt;/P&gt;&lt;P&gt;      commit_work                = c_x&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      packing_list               = li_objpack&lt;/P&gt;&lt;P&gt;      object_header              = li_objhead&lt;/P&gt;&lt;P&gt;      contents_bin               = li_objbin&lt;/P&gt;&lt;P&gt;      contents_txt               = li_objtxt&lt;/P&gt;&lt;P&gt;      receivers                  = li_reclist&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;      document_not_sent          = 2&lt;/P&gt;&lt;P&gt;      document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;      operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;      parameter_error            = 5&lt;/P&gt;&lt;P&gt;      x_error                    = 6&lt;/P&gt;&lt;P&gt;      enqueue_error              = 7&lt;/P&gt;&lt;P&gt;      OTHERS                     = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-status = co_stat_appl_err.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-msgty = c_stat_err.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-msgid = c_msg_class_spa.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-msgno = co_001.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-msgv1 = text-023.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE sy-subrc.&lt;/P&gt;&lt;P&gt;      WHEN 1.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-024.&lt;/P&gt;&lt;P&gt;      WHEN 2.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-025.&lt;/P&gt;&lt;P&gt;      WHEN 3.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-026.&lt;/P&gt;&lt;P&gt;      WHEN 4.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-027.&lt;/P&gt;&lt;P&gt;      WHEN 5.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-028.&lt;/P&gt;&lt;P&gt;      WHEN 6.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-029.&lt;/P&gt;&lt;P&gt;      WHEN 7.&lt;/P&gt;&lt;P&gt;        wa_idoc_status-msgv2 = text-030.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-msgv3 = space.&lt;/P&gt;&lt;P&gt;    wa_idoc_status-msgv4 = space.&lt;/P&gt;&lt;P&gt;    ws_flag = c_x.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f1001_mail_Distribution_list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 15:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create/m-p/1615594#M275762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T15:03:40Z</dc:date>
    </item>
  </channel>
</rss>

