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)
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?
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?
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?
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?
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 */
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?