Hi, I have a question about delegates in D365 for operations.
Imagine that we need to customize the class "SalesConfirmJournalCreate" to add some code.
We can directly customize and overlaying it, create an Extension_Of, use events or create a delegate.
If we choose to use a delegate, and we know that "SalesConfirmJournalCreate" class hasn't any delegate for default, so we will need to create it, is it consider a customization or an extension?
I suppose that this action is a customization, because we have to overlay code on an standar method of the class "SalesConfirmJournalCreate", so, what is the benefit of use a delegate in that case?
Thanks!