Notifications
Announcements
No record found.
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!
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
Use chain of command. Using event handler is an option but COC is preferred way.
Thank You!
Is this the correct Syntax?
[ExtensionOf(tableStr(SalesTable))]
final class MySalesTable_Extension
{
public void update()
next update();
// put my new code here
}
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.
oh ok...
So, my code will be called before the standard code is called?
yes , if you put it before calling next.
Thank you
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Martin Dráb 451 Most Valuable Professional
André Arnaud de Cal... 428 Super User 2025 Season 2
BillurSamdancioglu 239 Most Valuable Professional