
Customers can call BAPIs in custom program. Sometimes, unexpected problems can occur due to buffer is not cleared. I summarize what I have come acrossed here. Hope it is helpful.
Problem 1:
Delivered quantity of a production order/process order doesn't match the actual material documents.
Customer tries to execute confirmations for multiple production orders/process orders in ONE loop call. BAPI_PRODORDCONF_CREATE_TT(sometimes, BAPI_GOODSMVT_CREATE too) is used.
SOLUTION:
Call function module CO_ZF_DATA_RESET_COMPLETE before BAPI_PRODORDCONF_CREATE_TT or BAPI_GOODSMVT_CREATE.
KBA 2122706 (Delivered quantity of production ordder is not updated correctly if BAPI is called several times in a custom program) describes this.
Problem 2:
Production order has 4 external operations and all of them are with same purchase requisition. When custom program tries to execute confirmations for all 4 operations in ONE call, unexpected problem may occur for the purchase requisition, e.g. old value in change history always keeps as the first value.
SOLUTION:
Call function module ME_REFRESH_REQUISITION_EXT before BAPI_PRODORDCONF_CREATE_TT.
Problem 3:
Custom program calls BAPI_PRODORDCONF_GET_TT_PROP continuously in ONE call. The proposed batch in second run is different from the proposed run in first run.
As reason, the batches proposed in first run is locked, so they will not be the object for second run. The batch determination keeps the locks, because the goods movements are supposed to be posted and the batches are required for that.
SOLUTION:
Call function module L_PPIM_BATCH_DETERMIN_INIT_INT in between separate calls of BAPI_PRODORDCONF_GET_TT_PROP to initialize the held batches.
Problem 4:
Custom program calls BAPI_PRODORD_CREATE to create order 1, then calls CSAP_MAT_BOM_MAINTAIN to update BOM, and then calls BAPI_PRODORD_CREATE to create order 2 in ONE structure, but the order 2 is still with same BOM component as order 1 without considering new BOM updated by CSAP_MAT_BOM_MAINTAIN.
The standard BOM function modules GET_STPO and other function modules should get executed based on the MMORY value passed to CS_BOM_EXPL_MAT_V2. Normally, the explosion of BOM will determined based on STLNR number and thus repeation will be avoided within the structure.
SOLUTION:
Enhance FM CS_BOM_EXPL_MAT_V2 of BAPI_PRODORD_CREATE to make MMORY = 0 to suit for your enhancement. MMORY=0, means BOM explosion is executed every time. MMORY=1, means if STLNR is same, the BOM from buffer is used.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
23 | |
6 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 | |
3 | |
3 |