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!
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
André Arnaud de Cal... 291,391 Super User 2024 Season 2
Martin Dráb 230,445 Most Valuable Professional
nmaenpaa 101,156