<?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: Dump encountered while calling function 'MB_CREATE_MATERIAL_DOCUMENT_UT' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221841#M1379288</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Thanks&lt;/STRONG&gt;  Clemens for your response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not doing any conditional checking against units and groups.Can you please tell me how to do ?..pls provide some code,if you have any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see my Function module code&lt;/P&gt;&lt;P&gt;    IF meins &amp;lt;&amp;gt; l_t_mseg-meins.&lt;/P&gt;&lt;P&gt;     CALL FUNCTION 'ZOIL_QUANTITY_CONVERSION' - This will convert my input quantity to destination quantity(eg:MT to KG)&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Determine whether a positive (101) or negative (102) adjustment is necessary&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IF l_running_qty &amp;lt; menge. ("menge is input qunatity from input parameter, Running qty is adjustment quantity))&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // positive adjustment (101)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          l_adjust_qty = menge - l_running_qty.&lt;/P&gt;&lt;P&gt;          l_gm_code = '01'.&lt;/P&gt;&lt;P&gt;          l_movement_type = '101'.&lt;/P&gt;&lt;P&gt;        ELSEIF l_running_qty &amp;gt; menge.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // negative adjustment (102)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          l_adjust_qty = l_running_qty - menge.&lt;/P&gt;&lt;P&gt;          l_gm_code = '06'.&lt;/P&gt;&lt;P&gt;          l_movement_type = '102'.&lt;/P&gt;&lt;P&gt;        ELSEIF l_running_qty = menge.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // No adjustment required&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          return-id = g_zxmii. return-type = g_i. return-number = '055'.&lt;/P&gt;&lt;P&gt;          MESSAGE ID g_zxmii TYPE g_i NUMBER 055 INTO return-message&lt;/P&gt;&lt;P&gt;            WITH ebeln ebelp.&lt;/P&gt;&lt;P&gt;          APPEND return. EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Not Adjusting to prevent SAP Short dump if the qty is less than .5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IF l_adjust_qty &amp;lt;= '.5'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // No adjustment required&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          return-id = g_zxmii. return-type = g_i. return-number = '055'.&lt;/P&gt;&lt;P&gt;          MESSAGE ID g_zxmii TYPE g_i NUMBER 055 INTO return-message&lt;/P&gt;&lt;P&gt;            WITH ebeln ebelp.&lt;/P&gt;&lt;P&gt;          APPEND return. EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Fill goods receipt header data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        l_s_goodsmvt_header-pstng_date = l_date.&lt;/P&gt;&lt;P&gt;        l_s_goodsmvt_header-pstng_time = l_time.&lt;/P&gt;&lt;P&gt;        l_s_goodsmvt_header-doc_date = sy-datum.&lt;/P&gt;&lt;P&gt;        l_s_goodsmvt_header-pr_uname = sy-uname.&lt;/P&gt;&lt;P&gt;        l_goodsmvt_code-gm_code = l_gm_code.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Fill goods receipt item data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        l_t_goodsmvt_item-line_id =  1.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-plant = l_t_mseg-werks.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-stge_loc = c_recv.       "Generic recv loc for all plants.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-mvt_ind = 'B'.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-move_type = l_movement_type.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-entry_qnt = l_adjust_qty.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-entry_uom = l_t_mseg-meins.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-material = l_t_mseg-matnr.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-batch = l_t_mseg-charg.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-po_number = ebeln.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-po_item = ebelp.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-stck_type = l_wa_batch_stock_types-insmk.&lt;/P&gt;&lt;P&gt;       l_t_goodsmvt_item-prod_date = sy-datum.&lt;/P&gt;&lt;P&gt;        APPEND l_t_goodsmvt_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_param-line_id = 1.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_param-calculatemissing = 'X'.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_param-usedefaultparameters = 'X'.&lt;/P&gt;&lt;P&gt;        APPEND l_t_goodsmvt_param.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Perform the goods movement with correct stock type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CALL FUNCTION 'BAPI_GOODSMVT_CREATE_OIL' &lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            goodsmvt_header     = l_s_goodsmvt_header&lt;/P&gt;&lt;P&gt;            goodsmvt_code       = l_goodsmvt_code&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            materialdocument    = l_materialdocument&lt;/P&gt;&lt;P&gt;            matdocumentyear     = l_year&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            goodsmvt_item_01    = l_t_goodsmvt_item&lt;/P&gt;&lt;P&gt;            goodsmvt_item_param = l_t_goodsmvt_param&lt;/P&gt;&lt;P&gt;            return              = l_t_return.&lt;/P&gt;&lt;P&gt;"dump is encountered while callin 'MB_CREATE_MATERIAL_DOCUMENT_UT' which is inside 'BAPI_GOODSMVT_CREATE_OIL' &lt;/P&gt;&lt;P&gt;Please let me know,if you need some other details.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Sep 2009 08:38:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-29T08:38:44Z</dc:date>
    <item>
      <title>Dump encountered while calling function 'MB_CREATE_MATERIAL_DOCUMENT_UT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221839#M1379286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAPer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the Short Dump while posting  (101/102 movement type) through "BAPI_GOODSMVT_CREATE_OIL".&lt;/P&gt;&lt;P&gt;Dump is throwing for certain Purchase order not for all the PO's.Please tell me know,if you need some other details.&lt;/P&gt;&lt;P&gt;Mostly dump would happend during 102 posting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    The current application program detected a situation which really&lt;/P&gt;&lt;P&gt;    should not occur. Therefore, a termination with a short dump was&lt;/P&gt;&lt;P&gt;    triggered on purpose by the key word MESSAGE (type X).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    Short text of error message:&lt;/P&gt;&lt;P&gt;    Material 3000000210 / US01 Column 0001: MSEG-BPMNG not in quantity table&lt;/P&gt;&lt;P&gt;    /not consistent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Long text of error message:&lt;/P&gt;&lt;P&gt;     Diagnosis&lt;/P&gt;&lt;P&gt;         Before the system posts a material document for an HPM/TDP material&lt;/P&gt;&lt;P&gt;         (MARA-CMETH = 1 or 2), it performs the following consistency&lt;/P&gt;&lt;P&gt;         checks:&lt;/P&gt;&lt;P&gt;         o   For each unit of measure in the Unit of Measure Group&lt;/P&gt;&lt;P&gt;             (MARC-UOMGR), a line item  has to be present  in the additional&lt;/P&gt;&lt;P&gt;             quantity appendix table (Table MSEGO2)&lt;/P&gt;&lt;P&gt;         o   For each unit of measure in the main core table MSEG that is&lt;/P&gt;&lt;P&gt;             not initial a line item, has to be present in the additional&lt;/P&gt;&lt;P&gt;           quantity appendix table (Table MSEGO2)&lt;/P&gt;&lt;P&gt;       o   For each unit of measure in the main core table MSEG that is&lt;/P&gt;&lt;P&gt;           not initial a line item, has to be present in the additional&lt;/P&gt;&lt;P&gt;           quantity appendix  table (Table MSEGO2) and the corresponding&lt;/P&gt;&lt;P&gt;           packed format quantities have to be identical.&lt;/P&gt;&lt;P&gt;           This way, inconsistent stock level updates can be prevented.&lt;/P&gt;&lt;P&gt;   System Response&lt;/P&gt;&lt;P&gt;       The system stops processing.&lt;/P&gt;&lt;P&gt;   Procedure&lt;/P&gt;&lt;P&gt;       If the error is reproducible, contact your system administrator.&lt;/P&gt;&lt;P&gt;   Procedure for System Administration&lt;/P&gt;&lt;P&gt;       The inconsitency can have several reasons, for example:&lt;/P&gt;&lt;P&gt;       o   Incorrect postings from external systems using function module&lt;/P&gt;&lt;P&gt;           MB_CREATE_GOODS_MOVEMENT&lt;/P&gt;&lt;P&gt;       o   Handling errors&lt;/P&gt;&lt;P&gt;       o   Application programming errors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of the dump&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Sep 25, 2009 2:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2009 17:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221839#M1379286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-25T17:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dump encountered while calling function 'MB_CREATE_MATERIAL_DOCUMENT_UT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221840#M1379287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H  THILAGARAJ VIJA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you already check the listed conditions about units and groups?&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Sep 2009 19:41:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221840#M1379287</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-09-26T19:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dump encountered while calling function 'MB_CREATE_MATERIAL_DOCUMENT_UT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221841#M1379288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Thanks&lt;/STRONG&gt;  Clemens for your response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not doing any conditional checking against units and groups.Can you please tell me how to do ?..pls provide some code,if you have any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see my Function module code&lt;/P&gt;&lt;P&gt;    IF meins &amp;lt;&amp;gt; l_t_mseg-meins.&lt;/P&gt;&lt;P&gt;     CALL FUNCTION 'ZOIL_QUANTITY_CONVERSION' - This will convert my input quantity to destination quantity(eg:MT to KG)&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Determine whether a positive (101) or negative (102) adjustment is necessary&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IF l_running_qty &amp;lt; menge. ("menge is input qunatity from input parameter, Running qty is adjustment quantity))&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // positive adjustment (101)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          l_adjust_qty = menge - l_running_qty.&lt;/P&gt;&lt;P&gt;          l_gm_code = '01'.&lt;/P&gt;&lt;P&gt;          l_movement_type = '101'.&lt;/P&gt;&lt;P&gt;        ELSEIF l_running_qty &amp;gt; menge.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // negative adjustment (102)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          l_adjust_qty = l_running_qty - menge.&lt;/P&gt;&lt;P&gt;          l_gm_code = '06'.&lt;/P&gt;&lt;P&gt;          l_movement_type = '102'.&lt;/P&gt;&lt;P&gt;        ELSEIF l_running_qty = menge.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // No adjustment required&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          return-id = g_zxmii. return-type = g_i. return-number = '055'.&lt;/P&gt;&lt;P&gt;          MESSAGE ID g_zxmii TYPE g_i NUMBER 055 INTO return-message&lt;/P&gt;&lt;P&gt;            WITH ebeln ebelp.&lt;/P&gt;&lt;P&gt;          APPEND return. EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Not Adjusting to prevent SAP Short dump if the qty is less than .5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IF l_adjust_qty &amp;lt;= '.5'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        // No adjustment required&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          return-id = g_zxmii. return-type = g_i. return-number = '055'.&lt;/P&gt;&lt;P&gt;          MESSAGE ID g_zxmii TYPE g_i NUMBER 055 INTO return-message&lt;/P&gt;&lt;P&gt;            WITH ebeln ebelp.&lt;/P&gt;&lt;P&gt;          APPEND return. EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Fill goods receipt header data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        l_s_goodsmvt_header-pstng_date = l_date.&lt;/P&gt;&lt;P&gt;        l_s_goodsmvt_header-pstng_time = l_time.&lt;/P&gt;&lt;P&gt;        l_s_goodsmvt_header-doc_date = sy-datum.&lt;/P&gt;&lt;P&gt;        l_s_goodsmvt_header-pr_uname = sy-uname.&lt;/P&gt;&lt;P&gt;        l_goodsmvt_code-gm_code = l_gm_code.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Fill goods receipt item data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        l_t_goodsmvt_item-line_id =  1.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-plant = l_t_mseg-werks.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-stge_loc = c_recv.       "Generic recv loc for all plants.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-mvt_ind = 'B'.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-move_type = l_movement_type.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-entry_qnt = l_adjust_qty.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-entry_uom = l_t_mseg-meins.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-material = l_t_mseg-matnr.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-batch = l_t_mseg-charg.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-po_number = ebeln.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-po_item = ebelp.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_item-stck_type = l_wa_batch_stock_types-insmk.&lt;/P&gt;&lt;P&gt;       l_t_goodsmvt_item-prod_date = sy-datum.&lt;/P&gt;&lt;P&gt;        APPEND l_t_goodsmvt_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_param-line_id = 1.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_param-calculatemissing = 'X'.&lt;/P&gt;&lt;P&gt;        l_t_goodsmvt_param-usedefaultparameters = 'X'.&lt;/P&gt;&lt;P&gt;        APPEND l_t_goodsmvt_param.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      // Perform the goods movement with correct stock type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CALL FUNCTION 'BAPI_GOODSMVT_CREATE_OIL' &lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            goodsmvt_header     = l_s_goodsmvt_header&lt;/P&gt;&lt;P&gt;            goodsmvt_code       = l_goodsmvt_code&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            materialdocument    = l_materialdocument&lt;/P&gt;&lt;P&gt;            matdocumentyear     = l_year&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            goodsmvt_item_01    = l_t_goodsmvt_item&lt;/P&gt;&lt;P&gt;            goodsmvt_item_param = l_t_goodsmvt_param&lt;/P&gt;&lt;P&gt;            return              = l_t_return.&lt;/P&gt;&lt;P&gt;"dump is encountered while callin 'MB_CREATE_MATERIAL_DOCUMENT_UT' which is inside 'BAPI_GOODSMVT_CREATE_OIL' &lt;/P&gt;&lt;P&gt;Please let me know,if you need some other details.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 08:38:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-encountered-while-calling-function-mb-create-material-document-ut/m-p/6221841#M1379288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-29T08:38:44Z</dc:date>
    </item>
  </channel>
</rss>

