Which trigger code will close the form and navigate successfully?

Consider the following scenario:
In a multiform application, the user started in FormA.
1. From FormA, the user invoked FormB using CALL_FORM
2. From FormB, the user invoked FormC using OPEN_FORM
3. From FormC, the user invoked FormD using OPEN_FORM
4. From FormB, the user invoked FormE using CALL_FORM
FormE contains a button with a When-Button-Pressed trigger. Which trigger code will close the form and navigate successfully?

Consider the following scenario:
In a multiform application, the user started in FormA.
1. From FormA, the user invoked FormB using CALL_FORM
2. From FormB, the user invoked FormC using OPEN_FORM
3. From FormC, the user invoked FormD using OPEN_FORM
4. From FormB, the user invoked FormE using CALL_FORM
FormE contains a button with a When-Button-Pressed trigger. Which trigger code will close the form and navigate successfully?

A.
CLOSE_FORM(‘FormA’);
GO_FORM (‘FormD’);

B.
CLOSE_FORM(‘FormA’);
GO_FORM (‘FormC’);

C.
CLOSE_FORM(‘FormB’);
GO_FORM (‘FormC’);

D.
CLOSE_FORM(‘FormC’);
GO_FORM (‘FormB’);

E.
CLOSE_FORM(‘FormC’);
GO_FORM (‘FormD’);

F.
CLOSE_FORM(‘FormD’);
GO_FORM (‘FormA’);



Leave a Reply 0

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