2009 Jul 02 5:43 AM
Hi experts ,
What are the parameters i need to pass in BAPI_PO_CHANGE To make the the ELIKZ(DELIVERY COMPLETE Indicator) As X in EKPO table.
regards
Prasun
Hi experts ,
What are the parameters i need to pass in BAPI_PO_CHANGE To make the the ELIKZ(DELIVERY COMPLETE Indicator) As X in EKPO table.
regards
Prasun
2009 Jul 02 5:51 AM
2009 Jul 02 6:04 AM
hi can you send some sample code, as i have done the same before but it is not working
regards
Prasun
2009 Jul 02 6:18 AM
Hello
DATA: xreturn like BAPIRET2 occurs 0 with header line,
xpoitem like BAPIMEPOITEM occurs 0 with header line,
xpoitemx like BAPIMEPOITEMX occurs 0 with header line.
xpoitem-po_item = p_ebelp. " set position here
xpoitem-no_more_gr = 'X'.
append xpoitem.
xpoitemx-po_item = p_ebelp. " set position here
xpoitemx-no_more_gr = 'X'.
append xpoitemx.
CALL FUNCTION 'BAPI_PO_CHANGE'
EXPORTING
purchaseorder = p_ebeln "set ebeln here
TABLES
return = xreturn
poitem = xpoitem
poitemx = xpoitemx.
if sy-subrc = 0.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING WAIT = 'X'.
endif.
2009 Jul 09 12:37 PM
2021 Oct 28 2:13 PM
Hello
I have a similar requirment, can you please tell in which include of the program this code has to be written...
One more thing I observed is, it does not check the DCI indicater unless versions export parameter has been passed in BAPI_PO_CHANGE.
I got DYNPRO_ITAB_ERROR as short dump when I tried this code in INCLUDE LMLSRF0F.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |