<?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: Help with BAPI_PO_CREATE1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471208#M221475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've checked the fields to be filled using the FM BAPI_PO_GETDETAIL and I replicate them on the BAPI_PO_CREATE1 and the bapi still always change the quantity indicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to solve this problem? Am I missing something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Sep 2006 17:17:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-04T17:17:06Z</dc:date>
    <item>
      <title>Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471204#M221471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to create a PO with BAPI_PO_CREATE1. I'm facing a problem here because for some reason in the POITEM information the BAPI ALWAYS go and look at the quotation and changes the quantity of the items, and I don't want it to do that, instead I want it to use the quantity indicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope someone can help me through this problem.&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 16:06:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471204#M221471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-04T16:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471205#M221472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_poitem        TYPE STANDARD TABLE OF bapimepoitem,&lt;/P&gt;&lt;P&gt;      i_poitemx       TYPE STANDARD TABLE OF bapimepoitemx,&lt;/P&gt;&lt;P&gt;      i_poitem_sch    TYPE STANDARD TABLE OF bapimeposchedule,&lt;/P&gt;&lt;P&gt;      i_poitem_schx   TYPE STANDARD TABLE OF bapimeposchedulx,&lt;/P&gt;&lt;P&gt;      i_acct_ass      TYPE STANDARD TABLE OF bapimepoaccount,&lt;/P&gt;&lt;P&gt;      i_acct_assx     TYPE STANDARD TABLE OF bapimepoaccountx,&lt;/P&gt;&lt;P&gt;      i_services      TYPE STANDARD TABLE OF bapiesllc ,&lt;/P&gt;&lt;P&gt;      i_srvacc        TYPE STANDARD TABLE OF bapiesklc,&lt;/P&gt;&lt;P&gt;      i_return        TYPE STANDARD TABLE OF bapiret2,&lt;/P&gt;&lt;P&gt;      wa_header       TYPE bapimepoheader,&lt;/P&gt;&lt;P&gt;      wa_headerx      TYPE bapimepoheaderx,&lt;/P&gt;&lt;P&gt;      wa_poitem       TYPE bapimepoitem,&lt;/P&gt;&lt;P&gt;      wa_poitemx      TYPE bapimepoitemx,&lt;/P&gt;&lt;P&gt;      wa_poitem_sch   TYPE bapimeposchedule,&lt;/P&gt;&lt;P&gt;      wa_poitem_schx  TYPE bapimeposchedulx,&lt;/P&gt;&lt;P&gt;      wa_acct_ass     TYPE bapimepoaccount,&lt;/P&gt;&lt;P&gt;      wa_acct_assx    TYPE bapimepoaccountx,&lt;/P&gt;&lt;P&gt;      wa_services     TYPE bapiesllc,&lt;/P&gt;&lt;P&gt;      wa_srvacc       TYPE bapiesklc,&lt;/P&gt;&lt;P&gt;      wa_return       TYPE bapiret2,&lt;/P&gt;&lt;P&gt;      ws_po           TYPE bapimepoheader-po_number,&lt;/P&gt;&lt;P&gt;      ws_wait         TYPE bapita-wait.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: c_x        TYPE char01 VALUE 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;break gbpra8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_header-doc_type = 'ZDET'.&lt;/P&gt;&lt;P&gt;wa_header-vendor = '0002000000'.&lt;/P&gt;&lt;P&gt;PERFORM conversion_output USING wa_header-vendor&lt;/P&gt;&lt;P&gt;                          CHANGING wa_header-vendor.&lt;/P&gt;&lt;P&gt;wa_header-comp_code = 'DE03'.&lt;/P&gt;&lt;P&gt;wa_header-purch_org = 'DE03'.&lt;/P&gt;&lt;P&gt;wa_header-pur_group = 'DE1'.&lt;/P&gt;&lt;P&gt;wa_header-vper_start = '20060730'.&lt;/P&gt;&lt;P&gt;wa_header-vper_end = '20070621'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_headerx-comp_code = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-doc_type = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-creat_date = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-created_by = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-vendor = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-purch_org = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-pur_group = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-vper_start = c_x.&lt;/P&gt;&lt;P&gt;wa_headerx-vper_end = c_x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_poitem-po_item = 100.&lt;/P&gt;&lt;P&gt;wa_poitem-short_text = 'Sample'.&lt;/P&gt;&lt;P&gt;wa_poitem-plant = 'DE03'.&lt;/P&gt;&lt;P&gt;wa_poitem-quantity = 1.&lt;/P&gt;&lt;P&gt;wa_poitem-tax_code = 'V1'.&lt;/P&gt;&lt;P&gt;wa_poitem-item_cat = 'D'.&lt;/P&gt;&lt;P&gt;wa_poitem-acctasscat = 'K'.&lt;/P&gt;&lt;P&gt;wa_poitem-matl_group = 'ZDESS'.&lt;/P&gt;&lt;P&gt;wa_poitem-pckg_no = 10.&lt;/P&gt;&lt;P&gt;wa_poitem-gr_ind = space.&lt;/P&gt;&lt;P&gt;wa_poitem-gr_basediv = space.&lt;/P&gt;&lt;P&gt;APPEND wa_poitem TO i_poitem .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_poitemx-po_item = 100.&lt;/P&gt;&lt;P&gt;wa_poitemx-po_itemx = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-short_text = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-plant = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-quantity = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-tax_code = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-item_cat = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-acctasscat = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-matl_group = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-pckg_no = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-gr_ind = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-gr_basediv = space.&lt;/P&gt;&lt;P&gt;APPEND wa_poitemx TO i_poitemx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_poitem-po_item = 200.&lt;/P&gt;&lt;P&gt;wa_poitem-short_text = 'Sample'.&lt;/P&gt;&lt;P&gt;wa_poitem-plant = 'DE03'.&lt;/P&gt;&lt;P&gt;wa_poitem-quantity = 1.&lt;/P&gt;&lt;P&gt;wa_poitem-tax_code = 'V1'.&lt;/P&gt;&lt;P&gt;wa_poitem-item_cat = 'D'.&lt;/P&gt;&lt;P&gt;wa_poitem-acctasscat = 'K'.&lt;/P&gt;&lt;P&gt;wa_poitem-matl_group = 'ZDESS'.&lt;/P&gt;&lt;P&gt;wa_poitem-pckg_no = 40.&lt;/P&gt;&lt;P&gt;wa_poitem-gr_ind = space.&lt;/P&gt;&lt;P&gt;wa_poitem-gr_basediv = space.&lt;/P&gt;&lt;P&gt;APPEND wa_poitem TO i_poitem .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_poitemx-po_item = 200.&lt;/P&gt;&lt;P&gt;wa_poitemx-po_itemx = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-short_text = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-plant = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-quantity = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-tax_code = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-item_cat = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-acctasscat = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-matl_group = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-pckg_no = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-gr_ind = c_x.&lt;/P&gt;&lt;P&gt;wa_poitemx-gr_basediv = space.&lt;/P&gt;&lt;P&gt;APPEND wa_poitemx TO i_poitemx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_ass-po_item = 100.&lt;/P&gt;&lt;P&gt;wa_acct_ass-serial_no = 01.&lt;/P&gt;&lt;P&gt;wa_acct_ass-gl_account = '0006360100'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-co_area  = '1000'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-costcenter = 'KC010000'.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_ass TO i_acct_ass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_item = 100.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_no = 01.&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_itemx = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_nox = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-gl_account = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-co_area  = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-costcenter = c_x.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_assx TO i_acct_assx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_ass-po_item = 100.&lt;/P&gt;&lt;P&gt;wa_acct_ass-serial_no = 02.&lt;/P&gt;&lt;P&gt;wa_acct_ass-gl_account = '0006360100'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-co_area  = '1000'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-costcenter = 'KC010000'.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_ass TO i_acct_ass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_item = 100.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_no = 02.&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_itemx = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_nox = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-gl_account = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-co_area  = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-costcenter = c_x.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_assx TO i_acct_assx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_ass-po_item = 200.&lt;/P&gt;&lt;P&gt;wa_acct_ass-serial_no = 01.&lt;/P&gt;&lt;P&gt;wa_acct_ass-gl_account = '0006360100'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-co_area  = '1000'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-costcenter = 'KC010000'.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_ass TO i_acct_ass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_item = 200.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_no = 01.&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_itemx = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_nox = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-gl_account = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-co_area  = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-costcenter = c_x.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_assx TO i_acct_assx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_ass-po_item = 200.&lt;/P&gt;&lt;P&gt;wa_acct_ass-serial_no = 02.&lt;/P&gt;&lt;P&gt;wa_acct_ass-gl_account = '0006360100'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-co_area  = '1000'.&lt;/P&gt;&lt;P&gt;wa_acct_ass-costcenter = 'KC010000'.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_ass TO i_acct_ass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_item = 200.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_no = 02.&lt;/P&gt;&lt;P&gt;wa_acct_assx-po_itemx = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-serial_nox = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-gl_account = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-co_area  = c_x.&lt;/P&gt;&lt;P&gt;wa_acct_assx-costcenter = c_x.&lt;/P&gt;&lt;P&gt;APPEND wa_acct_assx TO i_acct_assx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_services-pckg_no = 10.&lt;/P&gt;&lt;P&gt;wa_services-line_no = 1.&lt;/P&gt;&lt;P&gt;wa_services-outl_no = '0'.&lt;/P&gt;&lt;P&gt;wa_services-outl_ind = c_x.&lt;/P&gt;&lt;P&gt;wa_services-subpckg_no = 20.&lt;/P&gt;&lt;P&gt;wa_services-from_line = 1.&lt;/P&gt;&lt;P&gt;wa_services-to_line = 2.&lt;/P&gt;&lt;P&gt;APPEND wa_services TO i_services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_services-pckg_no = 20.&lt;/P&gt;&lt;P&gt;wa_services-line_no = 2.&lt;/P&gt;&lt;P&gt;wa_services-service = 'H007'.&lt;/P&gt;&lt;P&gt;wa_services-quantity = '12'.&lt;/P&gt;&lt;P&gt;wa_services-gr_price = '100'.&lt;/P&gt;&lt;P&gt;wa_services-userf1_txt = 'Firm'.&lt;/P&gt;&lt;P&gt;APPEND wa_services TO i_services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_services-pckg_no = 40.&lt;/P&gt;&lt;P&gt;wa_services-line_no = 1.&lt;/P&gt;&lt;P&gt;wa_services-outl_no = '0'.&lt;/P&gt;&lt;P&gt;wa_services-outl_ind = c_x.&lt;/P&gt;&lt;P&gt;wa_services-subpckg_no = 50.&lt;/P&gt;&lt;P&gt;wa_services-from_line = 1.&lt;/P&gt;&lt;P&gt;wa_services-to_line = 2.&lt;/P&gt;&lt;P&gt;APPEND wa_services TO i_services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_services-pckg_no = 50.&lt;/P&gt;&lt;P&gt;wa_services-line_no = 2.&lt;/P&gt;&lt;P&gt;wa_services-service = 'H008'.&lt;/P&gt;&lt;P&gt;wa_services-quantity = '12'.&lt;/P&gt;&lt;P&gt;wa_services-gr_price = '100'.&lt;/P&gt;&lt;P&gt;wa_services-userf1_txt = 'Firm'.&lt;/P&gt;&lt;P&gt;APPEND wa_services TO i_services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_srvacc-pckg_no = 10.&lt;/P&gt;&lt;P&gt;wa_srvacc-line_no = 1.&lt;/P&gt;&lt;P&gt;wa_srvacc-serno_line = 01.&lt;/P&gt;&lt;P&gt;wa_srvacc-serial_no = 01.&lt;/P&gt;&lt;P&gt;wa_srvacc-percentage = 100.&lt;/P&gt;&lt;P&gt;APPEND wa_srvacc TO i_srvacc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_srvacc-pckg_no = 20.&lt;/P&gt;&lt;P&gt;wa_srvacc-line_no = 2.&lt;/P&gt;&lt;P&gt;wa_srvacc-serno_line = 02.&lt;/P&gt;&lt;P&gt;wa_srvacc-serial_no = 02.&lt;/P&gt;&lt;P&gt;wa_srvacc-percentage = 100.&lt;/P&gt;&lt;P&gt;APPEND wa_srvacc TO i_srvacc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_srvacc-pckg_no = 40.&lt;/P&gt;&lt;P&gt;wa_srvacc-line_no = 1.&lt;/P&gt;&lt;P&gt;wa_srvacc-serno_line = 01.&lt;/P&gt;&lt;P&gt;wa_srvacc-serial_no = 01.&lt;/P&gt;&lt;P&gt;wa_srvacc-percentage = 100.&lt;/P&gt;&lt;P&gt;APPEND wa_srvacc TO i_srvacc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_srvacc-pckg_no = 50.&lt;/P&gt;&lt;P&gt;wa_srvacc-line_no = 2.&lt;/P&gt;&lt;P&gt;wa_srvacc-serno_line = 02.&lt;/P&gt;&lt;P&gt;wa_srvacc-serial_no = 02.&lt;/P&gt;&lt;P&gt;wa_srvacc-percentage = 100.&lt;/P&gt;&lt;P&gt;APPEND wa_srvacc TO i_srvacc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_PO_CREATE1'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    poheader          = wa_header&lt;/P&gt;&lt;P&gt;    poheaderx         = wa_headerx&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    exppurchaseorder  = ws_po&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    return            = i_return&lt;/P&gt;&lt;P&gt;    poitem            = i_poitem&lt;/P&gt;&lt;P&gt;    poitemx           = i_poitemx&lt;/P&gt;&lt;P&gt;    poschedule        = i_poitem_sch&lt;/P&gt;&lt;P&gt;    poschedulex       = i_poitem_schx&lt;/P&gt;&lt;P&gt;    poaccount         = i_acct_ass&lt;/P&gt;&lt;P&gt;    poaccountx        = i_acct_assx&lt;/P&gt;&lt;P&gt;    poservices        = i_services&lt;/P&gt;&lt;P&gt;    posrvaccessvalues = i_srvacc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;break gbpra8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_return INTO wa_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ws_wait = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    wait = ws_wait.&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  conversion_output&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;      Conversion exit input&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 conversion_output  USING    p_ip&lt;/P&gt;&lt;P&gt;                        CHANGING p_op.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      input  = p_ip&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      output = p_op.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " conversion_output&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;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 16:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471205#M221472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-04T16:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471206#M221473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;probably you forgot to fill in a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create the PO manually.&lt;/P&gt;&lt;P&gt;Then use FM BAPI_PO_GETDETAIL for that po. This way you know how to fill in the fields used for bapi_po_create1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 16:12:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471206#M221473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-04T16:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471207#M221474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks, thanks for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Prakash, I've checked your code, however I forgot to mention that I need the reference on the POITEM of the quotation, so this gets saved in historic information, and that's why is taking the quotation quantity information instead of the one's i'm passing to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Rob, I will try your solution, and see if that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;I will keep you guys informed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 16:32:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471207#M221474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-04T16:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471208#M221475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've checked the fields to be filled using the FM BAPI_PO_GETDETAIL and I replicate them on the BAPI_PO_CREATE1 and the bapi still always change the quantity indicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to solve this problem? Am I missing something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 17:17:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471208#M221475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-04T17:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471209#M221476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm.&lt;/P&gt;&lt;P&gt;Normally this should work, however BAPI_PO_CREATE1 is a dreadfull bapi to work with, espescially when things don't work how you want it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search OSS, there are 400+ notes on this BAPI so use a specific search.&lt;/P&gt;&lt;P&gt;If this doesn´t work raise an oss message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 13:59:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471209#M221476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T13:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471210#M221477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob, thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will follow as you said, i've tried making the BAPI to work as I would like to but I haven't success.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 14:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471210#M221477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T14:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help with BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471211#M221478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Luck Gilberto Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only have bad memories regarding this BAPI, so I hope you'll fare better than I have done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 14:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-bapi-po-create1/m-p/1471211#M221478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T14:11:29Z</dc:date>
    </item>
  </channel>
</rss>

