Which two statements are true?
In SQL Server Profiler you view the following query from Microsoft Dynamics NAV:
SELECT SUM(“Amount”) FROM “CRONUS International Ltd_$Sales Line” WHERE
“Document No_” = ‘ORD-980001’
Which two statements are true? (Each correct answer presents a complete solution. Choose
two.)
Which FlowField methods are SIFT Indexes used for?
Which FlowField methods are SIFT Indexes used for?
which two locations can you start the debugger?
In which two locations can you start the debugger? (Each correct answer presents a
complete solution. Choose two.)
How should you add the Invoice field to the Watches list in the debugger?
You need to debug codeunit 80 – Sales Post on a sales order to validate whether the Invoice
variable changes status during the execution of the codeunit. How should you add the
Invoice field to the Watches list in the debugger?
How should you update the test function code so that it passes successfully?
You enhance the standard Fixed Asset table so that a fixed asset record cannot be deleted
when the Blocked field is set to TRUE by adding the following code to the On Delete trigger:
IF Blocked THEN
ERROR(CANNOT_DELETE)
CANNOT_DELETE is a text constant containing the ENU caption “You cannot delete this
record because it is blocked.”.
Against the code, a different developer writes a test function named TestBlockedFixedAsset.
The function must pass successfully when the Blocked field is set to TRUE and the record is
being deleted. The test function contains the following code:
FA.INIT;
FA.”No.” := ‘TEST’;
FA.Blocked:= TRUE;
FA.INSERT;
FA.DELETE (TRUE);
You run the test function but it does not pass successfully. How should you update the test
function code so that it passes successfully?
Which three function types are valid for handler functions?
Which three function types are valid for handler functions? (Each correct answer presents
part of the solution. Choose three.)
Which three codeunits make up a posting routine for Journal Lines?
You create a set of tables with pages so that it is possible to type Seminar Journal Lines in
the Seminar add-on. Which three codeunits make up a posting routine for Journal Lines?
(Each correct answer presents part of the solution. Choose three.)
Which information does the Seminar Register table contain?
You create several codeunits and tables as a part of the posting routines for a Seminar addon. Which information does the Seminar Register table contain?
What is the maximum number of dimension sources that can be used in the CreateDim function?
You are writing a new document header table. To integrate seamlessly with the rest of the
Microsoft Dynamics NAV suite, you must initialize the dimensions of the document by using
the standard CreateDim function of Microsoft Dynamics NAV. What is the maximum number
of dimension sources that can be used in the CreateDim function?
Which attribute of the object does this section represent?
When exporting objects using the text format, independent of the type of the object, each
object ends with the same section as shown below:
BEGIN END
Which attribute of the object does this section represent?