Microsoft Dynamics AX 2012 Development Introduction:MB6-869 Certification sample questions
QUESTION NO: 1
You are preparing to remove data from a database table by modifying cross-company data. You want to achieve this by making use of a single command. Which of the following actions should you take?
A. You should make use of the RecordInsertList class.
B. You should make use of the delete_from sequel statement.
C. You should make use of the delete_recordset sequel statement.
D. You should make use of the RecordSortedList class.
QUESTION NO:2
You have been instructed to make sure that new data is added to a Microsoft Dynamics AX 2012 database in bulk. You need to make sure that the instruction is adequately carried out. Which of the following actions should you take?
A. You should consider making use of the RecordInsertList.add method.
B. You should consider making use of the RecordInsertList.new method.
C. You should consider making use of the RecordInsertList.insertDatabase method.
D. You should consider making use of the RecordSortedList.ins method.
E. You should consider making use of the RecordSortedList.add method.
F. You should consider making use of the RecordSortedList.new method.
QUESTION NO: 3
You have been instructed to make sure that all changes in a current transaction are explicitly discarded. You have to call a command from the ttsLevel checking feature. Which of the following options should you make use of?
A. ttsBegin B. ttsCommit C. ttsAbort D. ttsDelete
QUESTION NO: 4
You have been instructed to create a Composite query in the Application Object Tree (AOT) by reusing an existing query object. Which of the following options are TRUE with regards to reusing a query object? (Choose all that apply.)
A. Changes to data source will only be made in the one query.
B. Changes to data source must be made in every object that references the query.
C. Any modifications made to the one query are immediately in operation for all objects based on that query.
D. You cannot make any modifications to this query.
QUESTION NO: 5
You are writing X++ code to create and execute a query. You are required to create the Query object by instantiating classes in the correct order.Which of the following classes should be instantiated FIRST?
A. QueryBuildRange B. QueryBuildDataSource C. Query D. QueryRun
QUESTION NO: 6
You are in the process of creating a form that should make use of more than one table as the data source. You are preparing to configure the data source properties for the form. Which of the following properties must be set to make this possible?
A. LinkType B. JoinSource C. OnlyFetchActive D. Table
QUESTION NO: 7
A record is being updated within an Optimistic Concurrency Control (OCC) transaction. You notice that the recVersion value of the record cache and the database record are not equal. Which of the following describes the result?
A. A DuplicateKeyException exception will be thrown.
B. The update will complete without an exception being thrown
C. A DuplicateKeyExceptionNotRecovered exception will be thrown.
D. An UpdateConflict exception will be thrown. E. A CLRError exception will be thrown.
QUESTION NO: 8
You have defined a System Enumeration element as Pessimistic. Which of the following System Enumeration types are you using?
A. Content Location B. Concurrency Model
C. Alignment D. ChangeGroupMode
QUESTION NO: 9
You have been assigned a trainee developer, named Kara Lang. you are in the process of explaining the advantages and disadvantages of using the Optimistic Concurrency Check (OCC) on a table. Which of the following describes a disadvantage?
A. Updates to records in the table can fail if another process is updating the same records.
B. Updates to records in the table causes other processes updating the same records to fail.
C. Records are locked for a shorter length of time.
D. Fewer resources are used to hold the locks during the update process.
QUESTION NO: 10
You are in the process of creating an output menu item. You have accessed Menu Items in the
Application Object Tree (AOT). Which of the following are valid options for creating an output menu item? (Choose three.)
A. You can drag a job from the Jobs node to the Output node.
B. You can drag a form from the Forms node to the Output node.
C. You can drag a class from the Classes node to the Output node.
D. You can drag a report from the Reports node to the Output node.
E. You can drag a query from the Queries node to the Output node.
QUESTION NO: 11
You are in the process of creating a display menu item. You have accessed Menu Items in the
Application Object Tree (AOT). Which of the following are valid options for creating an display menu item? (Choose three.)
A. You can drag a job from the Jobs node to the Display node.
B. You can drag a form from the Forms node to the Display node.
C. You can drag a class from the Classes node to the Display node.
D. You can drag a report from the Reports node to the Display node.
E. You can drag a query from the Queries node to the Display node.
QUESTION NO: 1
You are preparing to remove data from a database table by modifying cross-company data. You want to achieve this by making use of a single command. Which of the following actions should you take?
A. You should make use of the RecordInsertList class.
B. You should make use of the delete_from sequel statement.
C. You should make use of the delete_recordset sequel statement.
D. You should make use of the RecordSortedList class.
QUESTION NO:2
You have been instructed to make sure that new data is added to a Microsoft Dynamics AX 2012 database in bulk. You need to make sure that the instruction is adequately carried out. Which of the following actions should you take?
A. You should consider making use of the RecordInsertList.add method.
B. You should consider making use of the RecordInsertList.new method.
C. You should consider making use of the RecordInsertList.insertDatabase method.
D. You should consider making use of the RecordSortedList.ins method.
E. You should consider making use of the RecordSortedList.add method.
F. You should consider making use of the RecordSortedList.new method.
QUESTION NO: 3
You have been instructed to make sure that all changes in a current transaction are explicitly discarded. You have to call a command from the ttsLevel checking feature. Which of the following options should you make use of?
A. ttsBegin B. ttsCommit C. ttsAbort D. ttsDelete
QUESTION NO: 4
You have been instructed to create a Composite query in the Application Object Tree (AOT) by reusing an existing query object. Which of the following options are TRUE with regards to reusing a query object? (Choose all that apply.)
A. Changes to data source will only be made in the one query.
B. Changes to data source must be made in every object that references the query.
C. Any modifications made to the one query are immediately in operation for all objects based on that query.
D. You cannot make any modifications to this query.
QUESTION NO: 5
You are writing X++ code to create and execute a query. You are required to create the Query object by instantiating classes in the correct order.Which of the following classes should be instantiated FIRST?
A. QueryBuildRange B. QueryBuildDataSource C. Query D. QueryRun
QUESTION NO: 6
You are in the process of creating a form that should make use of more than one table as the data source. You are preparing to configure the data source properties for the form. Which of the following properties must be set to make this possible?
A. LinkType B. JoinSource C. OnlyFetchActive D. Table
QUESTION NO: 7
A record is being updated within an Optimistic Concurrency Control (OCC) transaction. You notice that the recVersion value of the record cache and the database record are not equal. Which of the following describes the result?
A. A DuplicateKeyException exception will be thrown.
B. The update will complete without an exception being thrown
C. A DuplicateKeyExceptionNotRecovered exception will be thrown.
D. An UpdateConflict exception will be thrown. E. A CLRError exception will be thrown.
QUESTION NO: 8
You have defined a System Enumeration element as Pessimistic. Which of the following System Enumeration types are you using?
A. Content Location B. Concurrency Model
C. Alignment D. ChangeGroupMode
QUESTION NO: 9
You have been assigned a trainee developer, named Kara Lang. you are in the process of explaining the advantages and disadvantages of using the Optimistic Concurrency Check (OCC) on a table. Which of the following describes a disadvantage?
A. Updates to records in the table can fail if another process is updating the same records.
B. Updates to records in the table causes other processes updating the same records to fail.
C. Records are locked for a shorter length of time.
D. Fewer resources are used to hold the locks during the update process.
QUESTION NO: 10
You are in the process of creating an output menu item. You have accessed Menu Items in the
Application Object Tree (AOT). Which of the following are valid options for creating an output menu item? (Choose three.)
A. You can drag a job from the Jobs node to the Output node.
B. You can drag a form from the Forms node to the Output node.
C. You can drag a class from the Classes node to the Output node.
D. You can drag a report from the Reports node to the Output node.
E. You can drag a query from the Queries node to the Output node.
QUESTION NO: 11
You are in the process of creating a display menu item. You have accessed Menu Items in the
Application Object Tree (AOT). Which of the following are valid options for creating an display menu item? (Choose three.)
A. You can drag a job from the Jobs node to the Display node.
B. You can drag a form from the Forms node to the Display node.
C. You can drag a class from the Classes node to the Display node.
D. You can drag a report from the Reports node to the Display node.
E. You can drag a query from the Queries node to the Display node.