1.
Microsoft Dynamics AX tracks variations in inventory movements by using a concept called "inventory dimensions". Do you know what the two defined types of inventory dimensions are? (choose more than one)
2.
Now one of your colleagues ask for your help, he has no idea about which method is used to add customer transactions to a voucher. So what's your answer?
3.
You are writing a .net application that will be used by users who are not Microsoft Dynamics AX users. The program will use a default Microsoft Dynamics AX user for anyone that uses the program. In order to make the .net program can login through the business connector and impersonate a default user, which method in the IAxapta3 interface can you use to achieve this?
4.
Now one of your colleagues asks for your help, he has to distinguish between an insert and update on a form. But he doesn't know how to do this. So what would you do?
5.
You have written some code that uses a number sequence. You get an error message when you run it. The error message is "System does not support setup of continuous number sequence." So what may cause this?
6.
In order to specify which table is to be used in a workflow, it must be added to a query. How do you specify that the workflow should use this query?
7.
You want to obtain an overview of the data types inherited from AmountMST, what should you use to achieve this?
8.
You have to run a form from his X++ code. choose the correct statement to replace the /* insert answer here */ comment in the following code: Args args; FormRun formRun; ; args = new args(formstr(inventTable)); formRun = classFactory.formRunClass(args); /* insert answer here */
9.
Now one of your colleagues ask for you help, he has no idea about what the RunBase framework can be used for. So what's your answer?
10.
The following block of code produces the Query object. Query q; QueryBuildDataSource qbDS; QueryBuildRange qbR; ; q = new Query(); qbDS = q.addDataSource(tableNum(InventTrans)); qbDS.addSelectionField(fieldNum(InventTrans,Qty),SelectionField::Sum); qbDS.orderMode (OrderMode::GroupBy); qbR = qbDS.addRange(fieldNum(InventTrans, ItemId)).value(SysQuery::value(""OL-2500"")); qbDS = qbDS.addDataSource(tableNum(InventDim)); qbDS.orderMode(OrderMode::GroupBy); qbDS.addSortField(fieldNum(InventDim, InventBatchId)); qbDS.relations(true); Do you know which select statement is identical to the Query object?