Dear Experts,
I am using BAPI_ACC_GL_POSTING_POST to PARK GL account document and done customer exit as below for status change but am getting issue like Changing the transaction code is not permitted for parked documents please help me to solve this issue.
Customer Exit:
extension1-field1 = 'BAPI-PARK'.
extension1-field2 = '1'.
APPEND extension1.
then Implemented Customer Exit ACBAPI01, with Include Program ZXACCU15 of Component EXIT_SAPLACC4_001 having below code...
READ TABLE extension INDEX 1.
IF sy-subrc = 0 AND extension-field1 = 'BAPI-PARK'.
MOVE 2 TO t_acchd-status_new. " Park Document
Endif.