how to add function after post action on sales transaction entry screen ?!
how to add function after post action on sales transaction entry screen ?!
I would recommend capturing logs and using the actual posting procedure as your trigger point.
Use GP Power Tools to make capturing logs much easier and even using GP Power Tools - Developer Tools module instead of Visual Studio Tools. Much easier to develop, no external tools, no restarting GP and copying DLLs etc.
You can capture the event with this. In my case I was capturing the Transfer option.
SopXferDocumentForm.SopXferDocument.TransferButton.ClickAfterOriginal += new EventHandler(SalesXferDocActionButton_Change); /* Capture the Transfer event */
I'm working in VB.NET, not C#, and I need just the code to allow me to add a customized function after the post action.
I'm working in VB.NET, not C#, and I need just the code to allow me to add a customized function after the post action.
You will need to develop a customization for this. You can use Dexterity or Visual Studio C#. What does this function need to do?
André Arnaud de Cal...
293,278
Super User 2025 Season 1
Martin Dráb
232,011
Most Valuable Professional
nmaenpaa
101,156
Moderator