Reputation: 317
Can I write code in x++ which have the same function as shortcut ctrl+q (cancel saving record in a datasource)? How to abort saving record in database?
Upvotes: 0
Views: 641
Reputation: 2281
You can try the following piece of code:
formRun.task(264);
or
#Task
formRun.task(#taskCtrlQ);
Upvotes: 1