Microsoft Dynamics AX Development Introduction (MB6-890) Free Practice Test
Question 1
You have an X+ + class that has the following code:
public class CustAdvancelnvoiceJourDP
{
private void insertCustVendAdvanceInvoiceJourTmp()
{
// do work
}
public void processReport()
{
// call InsertCustVendAdvancelnvoiceJourTmp
}
}
You need to call insertCustVendAdvancelnvoiceJourTmpO from the processReport method on the current instance of the object Which piece of code should you write within the processReport method to achieve this goal?
public class CustAdvancelnvoiceJourDP
{
private void insertCustVendAdvanceInvoiceJourTmp()
{
// do work
}
public void processReport()
{
// call InsertCustVendAdvancelnvoiceJourTmp
}
}
You need to call insertCustVendAdvancelnvoiceJourTmpO from the processReport method on the current instance of the object Which piece of code should you write within the processReport method to achieve this goal?
Correct Answer: C
Question 2
You have a query that uses Table1 as a data source.
You want this query to automatically update its fields when any fields are added or removed from Table1.
What property changes must be made for this query?
You want this query to automatically update its fields when any fields are added or removed from Table1.
What property changes must be made for this query?
Correct Answer: D
Question 3
You need to create several reports that use the same combination of tables as data sources. You know that you will need a relation between these tables so that the report outputs as desired. You also want the ability to change details, such as report parameters or sorting options, at run time.
Which element should you create to store these tables and the relations so that you can reuse the element as the data source on future reports?
Which element should you create to store these tables and the relations so that you can reuse the element as the data source on future reports?
Correct Answer: A
Question 4
You are using the Visual Studio development environment to perform a customization for your client You need to synchronize project elements related to the data dictionary along with the build operation. Where should you set the property "Synchronize database on
Build" to achieve this goal?
Build" to achieve this goal?
Correct Answer: A
Question 5
You create a duty to maintain customer master information.
Which two elements can you add to the duty? Each correct answer presents part of the
Which two elements can you add to the duty? Each correct answer presents part of the
Correct Answer: B
Question 6
You need to determine the output of the following code:

What is the output in the Infolog after running the code?

What is the output in the Infolog after running the code?
Correct Answer: D
Question 7
You are planning to give a presentation on Microsoft Dynamics AX to your development team. What should you state as an advantage of creating and using labels?
Correct Answer: A
Question 8
You are working with a new programmer and need to explain which types of objects can be aa< Which three objects should you discuss? Each correct answer presents a complete solution.
Correct Answer: A,D,E
Question 9
You need to create a form with the Operational Workspace pattern type to track a business activity. Which tab style should you use in conjunction with this pattern?
Correct Answer: A
Question 10
You need to determine the output of the following
int i = 25;
str output: - "A";
If (i 2- 10)
{
if (i < 20)
{
output - "B";
}
else
{
output = "C";
}
info(output) ;
}
if (i > 20)
{
if (i > 50)
{
output - "D";
}
else
{
output = "E";
}
}
info (output);
What is the output in the Infolog after running the code?
int i = 25;
str output: - "A";
If (i 2- 10)
{
if (i < 20)
{
output - "B";
}
else
{
output = "C";
}
info(output) ;
}
if (i > 20)
{
if (i > 50)
{
output - "D";
}
else
{
output = "E";
}
}
info (output);
What is the output in the Infolog after running the code?
Correct Answer: C