1.
What can be determined from viewing the following C/AL command?
CustProcessCode.Update(Customer);
2.
Which of the following is not true regarding Complex Data Types?
3.
What is the result of executing the following commands, where Number is a variable declared of the datatype Record and subtype Integer?
Number.Number := 10;
Number.MODIFY;
4.
Which of the following is a valid FILE function?
5.
Which of the following is true regarding NODBC and multi-language capability?
6.
When you use the number series for a new sales order, what information do you need to retrieve from the No. Series Line table?
7.
Which of the following is a true statement regarding subforms?
8.
In a standard C/SIDE codeunit, you are changing a function that is passed a record variable (by reference).
This function is usually called from a form. You need to add code to the function to check the filters that the user may have applied. Is this possible? Why or why not?
9.
Which of the following commands is not valid?
10.
Assume a variable with the name Customer is declared with a datatype of Record, and a subtype of Customer.
Assuming that there are six customer records, numbers 10000, 20000, 30000, 40000, 50000, and 60000, and further assuming that the commands below are executed, which customer record is stored in the
Customer variable?
Customer.FIND('+');
Customer.NEXT(3);
Customer.FIND('=');