Register Login

BAPI for Service Entry Sheet Acceptance

Updated May 18, 2018

Dear all,

Is there any BAPI to accept the service entry sheet (ML81N)?

Thanks in Advance.


Comments

  • 16 Sep 2013 6:59 am Sushma Helpful Answer
    Hi,
    Please try the following:

    CALL FUNCTION 'BAPI_ENTRYSHEET_CREATE'
    EXPORTING
    entrysheetheader = l_entrysheetheader
    IMPORTING
    entrysheet = v_entrysheet
    TABLES
    return = it_messages .
  • 16 Sep 2013 7:38 am amit butola
    Thank you for your response. The entry sheet is already created by lower
    level user using this BAPI. Is there any BAPI for accepting the entry
    sheet by another user?

    Thanks
  • 16 Sep 2013 12:20 pm Sushma
    Please try the following;

    If you require release strategy, use BAPI_ENTRYSHEET_RELEASE.

    If you require cancelling the release of entry sheets, use BAPI_ENTRYSHEET_RESET_RELEASE,

    If you require cancelling entry sheets without release strategy, use BAPI_ENTRYSHEET_DELETE.

    Hope these help you solve the problems.

×