<?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: Sales Order Creation using BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202377#M131239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am facing the issue while uploading the Variant conifgurations data.Can any one help? The BAPI is not giving any errors but variant configs are not populating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ord_part-PARTN_ROLE = 'AG'.&lt;/P&gt;&lt;P&gt;  ord_part-PARTN_NUMB = 'A300'.&lt;/P&gt;&lt;P&gt;  append ord_part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ord_part-PARTN_ROLE = 'WE'.&lt;/P&gt;&lt;P&gt;  ord_part-PARTN_NUMB = 'A300'.&lt;/P&gt;&lt;P&gt;  append ord_part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data temp type string.&lt;/P&gt;&lt;P&gt;  temp = sy-uzeit.&lt;/P&gt;&lt;P&gt;  ord_hdr-DOC_TYPE = 'TA'.&lt;/P&gt;&lt;P&gt;  ord_hdr-SALES_ORG = 'A300'.&lt;/P&gt;&lt;P&gt;  ord_hdr-DISTR_CHAN = 'A1'.&lt;/P&gt;&lt;P&gt;  ord_hdr-DIVISION = 'A1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ord_hdr-REQ_DATE_H = sy-datum + 1.&lt;/P&gt;&lt;P&gt;  ord_hdr-PURCH_NO_C = temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ord_hdr_x-UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-DOC_TYPE = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-SALES_ORG = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-DISTR_CHAN = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-DIVISION = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-PURCH_NO_C = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : itemno type POSNR_VA,&lt;/P&gt;&lt;P&gt;         hlitem type UEPOS,&lt;/P&gt;&lt;P&gt;         configid type CUX_CFG_ID ,&lt;/P&gt;&lt;P&gt;         rootid type CU_INST_ID,&lt;/P&gt;&lt;P&gt;         instid type CU_INST_ID ,&lt;/P&gt;&lt;P&gt;         SCHED_LINE  type ETENR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itemno = '000010'.&lt;/P&gt;&lt;P&gt;  hlitem = '000010'.&lt;/P&gt;&lt;P&gt;  configid = '000010'.&lt;/P&gt;&lt;P&gt;  rootid = '00000010'.&lt;/P&gt;&lt;P&gt;  instid = '00000001'.&lt;/P&gt;&lt;P&gt;  SCHED_LINE = '0001'.&lt;/P&gt;&lt;P&gt;  loop at matdetails.&lt;/P&gt;&lt;P&gt;    if matdetails-MATERIAL is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          ord_cfg_ref-POSEX = itemno.&lt;/P&gt;&lt;P&gt;      ord_cfg_ref-CONFIG_ID   =    configid .&lt;/P&gt;&lt;P&gt;      ord_cfg_ref-ROOT_ID = rootid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ord_cfg_ref.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ord_itm-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_itm-MATERIAL = matdetails-MATERIAL.&lt;/P&gt;&lt;P&gt;      ORD_ITM-PO_ITM_NO  =    ord_cfg_ref-POSEX.&lt;/P&gt;&lt;P&gt;      ord_itm-ITEM_CATEG = 'TAN'.&lt;/P&gt;&lt;P&gt;      ord_itm-TARGET_QTY = matdetails-totquan.&lt;/P&gt;&lt;P&gt;      append ord_itm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ord_itm_x-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_itm_x-UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;      ord_itm_x-MATERIAL = 'X'.&lt;/P&gt;&lt;P&gt;      ord_itm_X-PO_ITM_NO = 'X'.&lt;/P&gt;&lt;P&gt;      ord_itm_x-item_categ = 'X'.&lt;/P&gt;&lt;P&gt;      ord_itm_x-target_qty = 'X'.&lt;/P&gt;&lt;P&gt;      append ord_itm_x.&lt;/P&gt;&lt;P&gt;      ord_sch-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_sch-REQ_DATE = matdetails-deldate.&lt;/P&gt;&lt;P&gt;      ord_sch-REQ_QTY = matdetails-TOTQUAN.&lt;/P&gt;&lt;P&gt;      ord_sch-SCHED_LINE = SCHED_LINE.&lt;/P&gt;&lt;P&gt;      ord_sch-SCHED_TYPE = 'CP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ord_sch.&lt;/P&gt;&lt;P&gt;      ord_sch_x-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_sch_x-UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;      ord_sch_x-REQ_DATE = 'X'.&lt;/P&gt;&lt;P&gt;      ord_sch_x-REQ_QTY = 'X'.&lt;/P&gt;&lt;P&gt;      ord_sch_x-SCHED_LINE = SCHED_LINE.&lt;/P&gt;&lt;P&gt;      ord_sch_x-sched_type = 'X'.&lt;/P&gt;&lt;P&gt;      append ord_sch_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;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-INST_ID =  instid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_TYPE =  'MARA'.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CLASS_TYPE = '300'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = matdetails-material&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = matdetails-material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    if matdetails-SQUAN &amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     instid = instid + 1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      write instid to instid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-INST_ID =  instid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_TYPE =  'MARA'.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CLASS_TYPE = '300'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = matdetails-material&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = matdetails-material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_KEY =  matdetails-material.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY = matdetails-SQUAN.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY_UNIT = matdetails-VRKME.&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_INST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-INST_ID = instid.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = charval&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = charval.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CHARC = charval.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-VALUE = 'S'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_SIZE_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = ORDER_CFGS_VALUE-VALUE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = ORDER_CFGS_VALUE-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if matdetails-MQUAN &amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      instid = instid + 1.&lt;/P&gt;&lt;P&gt;      write instid to instid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-INST_ID =  instid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_TYPE =  'MARA'.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CLASS_TYPE = '300'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = matdetails-material&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = matdetails-material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_KEY =  matdetails-material.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY = matdetails-SQUAN.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY_UNIT = matdetails-VRKME.&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_INST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-INST_ID = instid.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = charval&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = charval.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CHARC = charval.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-VALUE = 'M'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_SIZE_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = ORDER_CFGS_VALUE-VALUE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = ORDER_CFGS_VALUE-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    itemno = itemno + 10.&lt;/P&gt;&lt;P&gt;    configid =   configid + 1.&lt;/P&gt;&lt;P&gt;    instid = instid + 1.&lt;/P&gt;&lt;P&gt;    sched_line = sched_line  + 1.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ORDER_HEADER_IN     = ord_hdr&lt;/P&gt;&lt;P&gt;      ORDER_HEADER_INX    = ord_hdr_x&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      SALESDOCUMENT       = sonum&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      RETURN              = ret&lt;/P&gt;&lt;P&gt;      ORDER_ITEMS_IN      = ord_itm&lt;/P&gt;&lt;P&gt;      ORDER_ITEMS_INX     = ord_itm_x&lt;/P&gt;&lt;P&gt;      ORDER_PARTNERS      = ord_part&lt;/P&gt;&lt;P&gt;      ORDER_SCHEDULES_IN  = ord_sch&lt;/P&gt;&lt;P&gt;      ORDER_SCHEDULES_INX = ord_sch_x&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_REF      = ord_cfg_ref&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST     = order_cfgs_inst&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE    = order_cfgs_value&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ORDER_CFGS_PART_OF  = ORDER_CFGS_PART_OF&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;*   ORDER_CFGS_REFINST = ORDER_CFGS_REFINST&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 05 Jun 2011 09:05:26 GMT</pubDate>
    <dc:creator>former_member183734</dc:creator>
    <dc:date>2011-06-05T09:05:26Z</dc:date>
    <item>
      <title>Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202369#M131231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Im creating Sales Order using BAPI_SALESORDER_CREATEFROMDAT2 Function Module. using this FM i need to populate Item configuration detail also. for that i have to populate following 4 TABLES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDER_CFGS_REF LIKE BAPICUCFG&lt;/P&gt;&lt;P&gt;ORDER_CFGS_INST LIKE BAPICUINS&lt;/P&gt;&lt;P&gt;ORDER_CFGS_PART_OF LIKE BAPICUPRT&lt;/P&gt;&lt;P&gt;ORDER_CFGS_VALUE LIKE BAPICUVAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i found OSS Note 549563, which is helpful to me and accordingly i have populate all four tables but still i am getting following error.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;A CU 013 Internal error: 10, 000010, NOT_ALL_INPUT_DATA_PROCESSED_AND_INCONSISTENT,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Desperately need some help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Salil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 05:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202369#M131231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T05:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202370#M131232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi salil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Some consistency problem with the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. To check,&lt;/P&gt;&lt;P&gt;   use the SAME DATA&lt;/P&gt;&lt;P&gt;   and MANUALLY ENTER&lt;/P&gt;&lt;P&gt;   thru tcode&lt;/P&gt;&lt;P&gt;   and try to create a new sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. It will give error at that time also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 05:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202370#M131232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T05:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202371#M131233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem u r facing is because of data only.&lt;/P&gt;&lt;P&gt;u may use this data and create a sales order manually.u will get the same result, so watever u did is ok its only data problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Umasankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 05:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202371#M131233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T05:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202372#M131234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the OSS note 872680.&lt;/P&gt;&lt;P&gt;This shoudl resolve your issue if I am right.&lt;/P&gt;&lt;P&gt;Visit this &lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1235583"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It solved the issue in that case.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karun M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 06:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202372#M131234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T06:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202373#M131235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ignore default data and try to populate all the data in variant configurations,&lt;/P&gt;&lt;P&gt;I already tested and it works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhupendra Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 12:19:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202373#M131235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T12:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202374#M131236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Bupendra,&lt;/P&gt;&lt;P&gt;its working!!!! Thanks...!!! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; now I am able to upload Variant Configurations data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again..&lt;/P&gt;&lt;P&gt;Salil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2006 05:17:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202374#M131236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-22T05:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202375#M131237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Salil,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;   I have same problem. Sales order is being created but Variant config data is not uploaded.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   Can you help me with your code. I am passing exactly the way BAPISDORDER_GETDETAILEDLIST returns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Seshagiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2006 10:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202375#M131237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-10T10:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202376#M131238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Salil... I'm trying to create a SO with BAPI_SALESORDER_CREATEFROMDAT2 with a configurable material but i'm having problems with that...if u can send me and example or something that will be useful to help me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have problems with:&lt;/P&gt;&lt;P&gt;order_cfgs_ref&lt;/P&gt;&lt;P&gt;order_cfgs_inst&lt;/P&gt;&lt;P&gt;order_cfgs_part_of&lt;/P&gt;&lt;P&gt;order_cfgs_value  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only carry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;order_header_in    &lt;/P&gt;&lt;P&gt;order_partners &lt;/P&gt;&lt;P&gt;SALESDOCUMENT     &lt;/P&gt;&lt;P&gt;order_cfgs_ref      &lt;/P&gt;&lt;P&gt;order_cfgs_inst     &lt;/P&gt;&lt;P&gt;order_cfgs_part_of   &lt;/P&gt;&lt;P&gt;order_cfgs_value   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLs help me!!!!&lt;/P&gt;&lt;P&gt;Thanks a lot!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 06:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202376#M131238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-23T06:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Order Creation using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202377#M131239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am facing the issue while uploading the Variant conifgurations data.Can any one help? The BAPI is not giving any errors but variant configs are not populating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ord_part-PARTN_ROLE = 'AG'.&lt;/P&gt;&lt;P&gt;  ord_part-PARTN_NUMB = 'A300'.&lt;/P&gt;&lt;P&gt;  append ord_part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ord_part-PARTN_ROLE = 'WE'.&lt;/P&gt;&lt;P&gt;  ord_part-PARTN_NUMB = 'A300'.&lt;/P&gt;&lt;P&gt;  append ord_part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data temp type string.&lt;/P&gt;&lt;P&gt;  temp = sy-uzeit.&lt;/P&gt;&lt;P&gt;  ord_hdr-DOC_TYPE = 'TA'.&lt;/P&gt;&lt;P&gt;  ord_hdr-SALES_ORG = 'A300'.&lt;/P&gt;&lt;P&gt;  ord_hdr-DISTR_CHAN = 'A1'.&lt;/P&gt;&lt;P&gt;  ord_hdr-DIVISION = 'A1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ord_hdr-REQ_DATE_H = sy-datum + 1.&lt;/P&gt;&lt;P&gt;  ord_hdr-PURCH_NO_C = temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ord_hdr_x-UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-DOC_TYPE = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-SALES_ORG = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-DISTR_CHAN = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-DIVISION = 'X'.&lt;/P&gt;&lt;P&gt;  ord_hdr_x-PURCH_NO_C = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : itemno type POSNR_VA,&lt;/P&gt;&lt;P&gt;         hlitem type UEPOS,&lt;/P&gt;&lt;P&gt;         configid type CUX_CFG_ID ,&lt;/P&gt;&lt;P&gt;         rootid type CU_INST_ID,&lt;/P&gt;&lt;P&gt;         instid type CU_INST_ID ,&lt;/P&gt;&lt;P&gt;         SCHED_LINE  type ETENR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itemno = '000010'.&lt;/P&gt;&lt;P&gt;  hlitem = '000010'.&lt;/P&gt;&lt;P&gt;  configid = '000010'.&lt;/P&gt;&lt;P&gt;  rootid = '00000010'.&lt;/P&gt;&lt;P&gt;  instid = '00000001'.&lt;/P&gt;&lt;P&gt;  SCHED_LINE = '0001'.&lt;/P&gt;&lt;P&gt;  loop at matdetails.&lt;/P&gt;&lt;P&gt;    if matdetails-MATERIAL is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          ord_cfg_ref-POSEX = itemno.&lt;/P&gt;&lt;P&gt;      ord_cfg_ref-CONFIG_ID   =    configid .&lt;/P&gt;&lt;P&gt;      ord_cfg_ref-ROOT_ID = rootid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ord_cfg_ref.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ord_itm-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_itm-MATERIAL = matdetails-MATERIAL.&lt;/P&gt;&lt;P&gt;      ORD_ITM-PO_ITM_NO  =    ord_cfg_ref-POSEX.&lt;/P&gt;&lt;P&gt;      ord_itm-ITEM_CATEG = 'TAN'.&lt;/P&gt;&lt;P&gt;      ord_itm-TARGET_QTY = matdetails-totquan.&lt;/P&gt;&lt;P&gt;      append ord_itm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ord_itm_x-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_itm_x-UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;      ord_itm_x-MATERIAL = 'X'.&lt;/P&gt;&lt;P&gt;      ord_itm_X-PO_ITM_NO = 'X'.&lt;/P&gt;&lt;P&gt;      ord_itm_x-item_categ = 'X'.&lt;/P&gt;&lt;P&gt;      ord_itm_x-target_qty = 'X'.&lt;/P&gt;&lt;P&gt;      append ord_itm_x.&lt;/P&gt;&lt;P&gt;      ord_sch-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_sch-REQ_DATE = matdetails-deldate.&lt;/P&gt;&lt;P&gt;      ord_sch-REQ_QTY = matdetails-TOTQUAN.&lt;/P&gt;&lt;P&gt;      ord_sch-SCHED_LINE = SCHED_LINE.&lt;/P&gt;&lt;P&gt;      ord_sch-SCHED_TYPE = 'CP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ord_sch.&lt;/P&gt;&lt;P&gt;      ord_sch_x-ITM_NUMBER = itemno.&lt;/P&gt;&lt;P&gt;      ord_sch_x-UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;      ord_sch_x-REQ_DATE = 'X'.&lt;/P&gt;&lt;P&gt;      ord_sch_x-REQ_QTY = 'X'.&lt;/P&gt;&lt;P&gt;      ord_sch_x-SCHED_LINE = SCHED_LINE.&lt;/P&gt;&lt;P&gt;      ord_sch_x-sched_type = 'X'.&lt;/P&gt;&lt;P&gt;      append ord_sch_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;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-INST_ID =  instid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_TYPE =  'MARA'.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CLASS_TYPE = '300'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = matdetails-material&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = matdetails-material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    if matdetails-SQUAN &amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     instid = instid + 1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      write instid to instid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-INST_ID =  instid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_TYPE =  'MARA'.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CLASS_TYPE = '300'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = matdetails-material&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = matdetails-material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_KEY =  matdetails-material.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY = matdetails-SQUAN.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY_UNIT = matdetails-VRKME.&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_INST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-INST_ID = instid.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = charval&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = charval.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CHARC = charval.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-VALUE = 'S'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_SIZE_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = ORDER_CFGS_VALUE-VALUE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = ORDER_CFGS_VALUE-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if matdetails-MQUAN &amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      instid = instid + 1.&lt;/P&gt;&lt;P&gt;      write instid to instid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-INST_ID =  instid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_TYPE =  'MARA'.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-CLASS_TYPE = '300'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = matdetails-material&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = matdetails-material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-OBJ_KEY =  matdetails-material.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY = matdetails-SQUAN.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST-QUANTITY_UNIT = matdetails-VRKME.&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_INST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CONFIG_ID = configid.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-INST_ID = instid.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = charval&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = charval.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-CHARC = charval.&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE-VALUE = 'M'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERSION_EXIT_SIZE_INPUT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = ORDER_CFGS_VALUE-VALUE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT = ORDER_CFGS_VALUE-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append ORDER_CFGS_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    itemno = itemno + 10.&lt;/P&gt;&lt;P&gt;    configid =   configid + 1.&lt;/P&gt;&lt;P&gt;    instid = instid + 1.&lt;/P&gt;&lt;P&gt;    sched_line = sched_line  + 1.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ORDER_HEADER_IN     = ord_hdr&lt;/P&gt;&lt;P&gt;      ORDER_HEADER_INX    = ord_hdr_x&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      SALESDOCUMENT       = sonum&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      RETURN              = ret&lt;/P&gt;&lt;P&gt;      ORDER_ITEMS_IN      = ord_itm&lt;/P&gt;&lt;P&gt;      ORDER_ITEMS_INX     = ord_itm_x&lt;/P&gt;&lt;P&gt;      ORDER_PARTNERS      = ord_part&lt;/P&gt;&lt;P&gt;      ORDER_SCHEDULES_IN  = ord_sch&lt;/P&gt;&lt;P&gt;      ORDER_SCHEDULES_INX = ord_sch_x&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_REF      = ord_cfg_ref&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_INST     = order_cfgs_inst&lt;/P&gt;&lt;P&gt;      ORDER_CFGS_VALUE    = order_cfgs_value&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ORDER_CFGS_PART_OF  = ORDER_CFGS_PART_OF&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;*   ORDER_CFGS_REFINST = ORDER_CFGS_REFINST&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2011 09:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-creation-using-bapi/m-p/1202377#M131239</guid>
      <dc:creator>former_member183734</dc:creator>
      <dc:date>2011-06-05T09:05:26Z</dc:date>
    </item>
  </channel>
</rss>

