On the Employees form, you do not want the cursor to enter the Employee_Id text item, which is
the first item in the first block on the form. You code a Pre-Text-item trigger for that item that uses
the GO_ITEM built-in to navigate to the next item.
What happens when you run the form from Forms Builder?
A.
You receive a compilation error.
B.
The form starts to run, but immediately closes. So If an error message Is displayed, you are
unable to see it.
C.
The form runs, but as soon as it appears, you receive a runtime error.
D.
The form runs, but as soon as you perform any navigation, a runtime error occurs.
E.
The form runs with no problem.
Explanation:
Pre-Text-Item :Perform an action before Form Builder navigates to a text item fromthe record level.
D is correct. There is ‘Illegal restricted procedure GO_ITEM in PRE-TEXT_ITEM trigger’ displayed.
As I’ve check recently if there is only GO_BLOCK built-in used in PRE-TEXT-ITEM trigger C is correct. Otherwise it’s B.
B is not Correct Answer, D is Correct Answer
C is the correct Answer
I tried it and the answer is c, since when the form is executed it gives the following error: FRM-40737 illegal restricted procedure GO_ITEM in PRE-TEXT-ITEM trigger
Answer: C