| MB7-516 Exam |
| MB7-516 - Exam Information |
| Question of the day |
You have added a command button to a form that calls a codeunit when it is pressed (using RunObject). The OnRun trigger of the codeunit modifies the customer record as follows: IF Customer.GET(CustNo) THEN BEGIN Customer.'Chain Name' := NewChainName; Customer.MODIFY; END; // Other code here When does the customer change get committed to the database?
Answer(s)
The change gets committed automatically at the end of the execution of the codeunit.