Announcements
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.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
SajeedMullaji 312
André Arnaud de Cal... 284 Super User 2026 Season 2
Martin Dráb 258 Most Valuable Professional