Dear team,
I explored the things and what I understood about table events
In an AX 2012 insert
method override, any code written before the super()
call is executed on-inserting while any code written after the super()
call is executed on-inserted.
So, here in D365FO, MS introduced many events in Table level. So, On-Inserting and On-Inserted is one of them.
My understanding --
For example -- if I used On-Inserting in table events, it actually called the table insert method and before super it executed the On -inserting code and after super it will executed On-Inserted code. The super activity id happening internally.
Am I correct?