Which scenario could have caused the Navigation Trap?

Some forms that you wrote have been through part of the testing cycle. One of the testers has reported encountering a "Navigation Trap" in your Orders form.
Which scenario could have caused the Navigation Trap?

Some forms that you wrote have been through part of the testing cycle. One of the testers has reported encountering a "Navigation Trap" in your Orders form.
Which scenario could have caused the Navigation Trap?

A.
The Pre-Form trigger validates the user and time of day and also contains the code:
GO_ITEM(‘ORDERS.Date_Ordered’);
This is an illegal call to a restricted built-in, resulting in the Navigation Trap.

B.
Two adjacent text items have When-New-Item-Instance triggers that fail when executed.
This left the internal cursor with no place to go when the tester attempted to navigate to them, and there was a fatal error for the form.

C.
A Pre-Text-Item trigger allows the focus unto the text item the first time it is executed, but subsequent execution raises a FORM_TRIGGER_FAILURE.
A Pre-Text-Item trigger on a different text item also fails.

D.
The Next Navigation Data Block and Previous Navigation Data Block properties of the Orders and Order_Items blocks have been set so that the focus cannot move to the Inventories block.

E.
A When-Validate-Item trigger on a text item validates the contents of the wrong field, and you have coded a GO_ITEM() that sends the focus back to the item that invoked it.

F.
The Next Navigation Item and Previous Navigation Item properties of some text items have been set so that the user is stuck in an infinite navigation loop.



Leave a Reply 0

Your email address will not be published. Required fields are marked *