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;
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?
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('=');