我找到了两个函数,BAPI_PO_CREATE
和BAPI_PO_CREATE1
. 由于CREATE1
它的修改日期较新,我认为这将是最好的使用日期。例如,我正在创建一个没有材料的相当简单的购买。
call function 'BAPI_PO_CREATE1'
exporting
poheader = po_header
poheaderx = po_header_x
testrun = abap_false
tables
return = returning
poitem = po_items
poitemx = po_items_x
poaccount = po_accounts
poaccountx = po_accounts_x
poschedule = po_schedule
poschedulex = po_schedule_x.
因此,我使用总账科目和 WBS 元素作为成本对象:
append initial line to po_accounts assigning field-symbol(<po_account>).
<po_account>-po_item = current_position.
" Classes that call CONVERSION_EXIT
<po_account>-gl_account = /dim/cl_bonadm_exit=>int_saknr( <item>-gl_account ).
<po_account>-wbs_element = /dim/cl_bonadm_exit=>int_posnr( <item>-wbs_id ).
append initial line to po_accounts_x assigning field-symbol(<po_account_x>).
<po_account_x>-po_item = current_position.
<po_account_x>-po_itemx = abap_true.
<po_account_x>-gl_account = abap_true.
<po_account_x>-wbs_element = abap_true.
但是,我继续收到错误消息:
No instance of object type PurchaseOrder has been created. External reference:
Purchase order item 00010 still contains faulty account assignments
Can delivery date be met?
Account 475000 requires an assignment to a CO object
情况并非如此,当我在 ME21n 中填写相同的确切数据时,我仍然会收到交货日期警告,但不会收到采购订单项目的错误。我遇到了两个不同的 SAP 注释,但它们都无法实现。同样,即使我从帐户中删除 WBS 元素,我仍然会收到错误消息。
我还尝试在 BAPI 结构的 CO-object 字段中填写 WBS 元素,但没有任何效果。我可以在 BAPI 中跟踪它引发此错误消息的位置,但我无法找出它发生的原因。