Hi, I have a date field in the salestable. When this is changed, I need to update other date fields to the same value in the salestable and the salesline.
I'm new the 365, how do I access the update method on the sales table?
Thanks in Advance!
Thank you
yes , if you put it before calling next.
oh ok...
So, my code will be called before the standard code is called?
The syntax is correct. However if you test it you will notice that it will not update your fields.
You need to put your code before the "next" call, otherwise it's executed only after the standard update method, and that would be too late.
Thank You!
Is this the correct Syntax?
[ExtensionOf(tableStr(SalesTable))]
final class MySalesTable_Extension
{
public void update()
{
next update();
// put my new code here
}
}
Use chain of command. Using event handler is an option but COC is preferred way.
You can use Chain of Command, or event handlers to run your code when the standard update method of SalesTable table is triggered.
Chain of Command is the recommended way.
You can check this documentation to understand how to use it: docs.microsoft.com/.../method-wrapping-coc
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,151 Super User 2024 Season 2
Martin Dráb 229,993 Most Valuable Professional
nmaenpaa 101,156