MB7-516  Exam

Exam # of questions Description  Update
MB7-516 81 MB7-516... 02/15/2011
[Practice Test]   [Download Study Guide(PDF)]  [Update Exam]

MB7-516 - Exam Information
  • Description:NAV 5.0 C/SIDE Solution Development
  • Passing Score:75%
  • Practice Test - Number of questions:81 questions
  • Simulation Test - Number of questions:81 questions
  • Simulation Test Duration:90 minutes
  • Has explanations:No

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)

  1. The change gets committed automatically with an implicit commit immediately following themodify statement.
  2. The change will not get committed since you did not use the commit statement.
  3. The change gets committed automatically at the end of the execution of the codeunit.
  4. The change gets committed automatically when the user leaves the record or the form.
Correct Answer

The change gets committed automatically at the end of the execution of the codeunit.