Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Add / Change PO Confirmations (EKES)

Former Member
0 Kudos

Will FM ME_CONFIRMATION_MAINTAIN or ME_CONFIRMATION_MAINTAIN_AVIS allow me to add / change EKES entries? As shipping notification is received from vendor, I want to add a new confirmation for qty shipped, and change the existing order confirmation by reducing the qty by the amount of the shipment.

2 REPLIES 2

Former Member
0 Kudos

Hi kanda,

I am facing the same isuue, did you find any solution to this? If so then please let me know

0 Kudos

I was not able to update the records, however, I was able to use the function module ME_CONFIRMATION_MAINTAIN_AVIS to delete the old record and then insert an updated record.

  • Process EKES deletes

if not t_xuekes[] is initial.

call function 'ME_CONFIRMATION_MAINTAIN_AVIS'

exporting

i_ibtyp = '1'

tables

t_ekes = t_xuekes.

endif.

  • Process EKES inserts

if not xuekes[] is initial.

call function 'ME_CONFIRMATION_MAINTAIN_AVIS'

exporting

i_ibtyp = '1'

tables

t_ekes = xuekes.

endif.