Register Login

Bapi for Updating the confirmation table(EKES)

Updated May 18, 2018

Hi,

Could anyone let me know the BAPI to update the Vendor confirmation table EKES. And also the parameters to be passed to it.

Thanks.


Comments

  • 10 Aug 2010 11:18 am rekha
    Hi,

    to create a new entry in table EKES you can use the FM ME_UPDATE_DOCUMENT. If the purchase order doensn't exist, you can use ME_CREATE_DOCUMENT. The parameters I_LOGSY and I_VORGA are both optional. Fill your data in the table XEKES.

    Regards,
  • 10 Aug 2010 11:19 am rekha
    hi
    i used the FM ME_UPDATE_DOCUMENT
    to update the table ekes

    like i want to update the quotation status as 'A'.
    but it's not getting updated in the table.

    while creating the quotation using me47 the status is updated in the table , but using the FM it's not getting updated..

    expecting a reply asap.

    regards,
  • 10 Aug 2010 11:20 am rekha
    After your call to FM ME_UPDATE_DOCUMENT is successful, please perform a explicit COMMIT.
  • 10 Aug 2010 11:22 am rekha
    Use the FM ME_CONFIRMATION_UPDATE to update EKES table.


    CALL FUNCTION 'ME_CONFIRMATION_UPDATE'
    EXPORTING
    i_ebeln = ekko-ebeln
    TABLES
    xekes = xekes
    yekes = yekes.

    "yekes contains the EKES table in DB
    "xekes contains the changed values for EKES table



    Hope this helps.

    Thanks

×