What happens when you click Run Form Debug in Forms Builder?
A.
The form runs on your local machine by using a debug executable client.
B.
The form runsina three-tier environment by using the application server URL that you
specifyinruntime preferences.
C.
The form runsina three tier environment by using the [debug] configurationinthe
FORMSWEB.CFG file.
D.
The form runsina simulated three-tier environment by using an applet viewer that isincluded
with the product to enable debugging.
Explanation:
The Oracle Forms Builder Debugger runs locally on your workstation.
formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
# Forms runtime argument: whether to run in debug mode
debug=no
# Forms runtime argument: host for debugging
host=
# Forms runtime argument: port for debugging
port=
Note:
If you simply want to run a form from the Forms Builder and debug it, then you need to make sure
your Forms Builder is configured to run forms on your workstation. Then, open the trigger/program
unit you want to debug and add a break-point. This can be done by double-clicking (in the left
margin) the line you want to break on or you can select the line of code and select the
Insert/Remove Breakpoint (F5) option from the Debug Menu (or press the F5 key). Then click the
Run Form Debug icon in the toolbar. When you form runs, the Debug Console will open in the
Forms Builder. You will have to select the features you want to watch from the Debug Console
toolbar (Stack, Variables, Watch, Form Values, PL/SQL Packages, Global/System Variables, orBreakpoints).
B is correct answer