2021 Oct 24 4:28 PM
Hi,
I want to know if there is any BADI / U EXIT / Enhancement available for tcode FK05 on SAVE commit.
I found below BADI / u exit.
BADI - VENDOR_ADD_DATA
BADI - VENDOR_ADDRSCR_CHG
User Exit - ZXF05U01
But above BADI / u exit triggers on pressing save button immediately i.e. before commit.
I want enhancement which will get triggered after commit to database happened so that I can perform next activity e.g. update table in CRM.
Pl. help.
Regards,
2021 Oct 24 5:33 PM
I doubt that there is an exit that runs exactly after all changes have been saved.
How about implementing your logic in an update function module and call it in UPDATE TASK from one of the exits you mentioned? This way it will only take effect if the vendor master is actually updated (a COMMIT WORK is issued by the transaction).
2021 Oct 27 3:54 PM
What will you do after the update?
In both cases, the registered FM will be executed once the FM update task (V1) are completed.