The Orders form has the following triggers defined:
1.
Post-Text-Item on Customer_Id
2.
Pre-Text-Item on Sales_Rep_Id
3.
When-New-Item-instance on Sales_Rep_Id
The form's Validation Unit property is set to Record.
When the user navigates from Customer_Id to Sales_Rep_Id, which triggers fire and what is the sequence?
A. 1, 2, and 3
B. 1, 3, and 2
C. 1 and 2 only
D. 2 and 3 only
E. 3 only
View the Exhibit.
The Summit menu is attached to the Orders form. The Toggle Autoquery menu item is a check box that
toggles whether a query is automatically performed when the Orders form is first invoked. If the check box
is deselected, users must manually query.
In addition to using the menu, users want to be able to toggle the autoquery preference directly from the
form. You add a button named Toggle Autoquery with the following When-Button- Pressed trigger:
DECLARE
mi_id MENUITEMS;
BEGIN
mi_id ;=FIND_ITEM ('Preferences.AutoQuery')
/* Determine the current checked static of the AutoCommit menu checkbox item And toggle the checked
state*/
IF GET_ITEM_PROPERTY (mi_id, CHECKED) = 'TRUE' THEN
SET_ITEM_PROPERTY (mi_id, CHECKED, PROPERTY_FALSE);
ELSE
SET_ITEM_PROPERTY (mi_id, CHECKED, PROPERTY_TRUE);
END IF;
END;
However, the trigger does not compile. What three changes must you make so that the trigger compiles
successfully?
A. Change FIND_ITEM to FIND_MENU_ITEM.
B. Change 'preferences.AutoQuery' to 'orders.preferences.AutoQuery'.
C. Change 'preferences.AutoQuery' to 'AutoQuery'.
D. Change 'preferences.AutoQuery' to 'ORDERS.PREFERENCES>AUTOQUERY'.
E. Change 'preferences.AutoQuery' to 'AUTOQUERY'.
F. Change GET_ITEM_PROPERTY to GET_MENU_ITEM_PROPERTY
G. Change SET_ITEM_PROPERTY to SET_MENU_ITEM_PROPERTY
H. Change PROPERTY_FALSE to 'FALSE'.
I. Change PROPERTY_TRUE to 'TRUE'.
View the Exhibit.
You have integrated the WebUtil utility into the Orders form. You code a When-Button-Pressed trigger to call some WebUtil functionality, and then run the form to test it. Everything works as it should.
You then write some other triggers and test the form again. Before the form appears, you receive several errors that are similar to the one shown in the Exhibit.
What is a probable cause of this error?
A. You have invoked WebUtil functionality from a trigger that does not accept restricted built- ins.
B. You have invoked WebUtil functionality from a Pre-form trigger.
C. You did not recompile the WebUtil library after adding new triggers.
D. You did not enable the GetClientinfo JavaBean.
E. Java is not installed on the client machine, so SET_JAVA_VERSION returns an error.
View the Exhibit.
The DBA has added a 30-character Cust_Middle_Name field to the Customers table and wants you to add it to the Customers form. It should be on the same line as the as the first and last names, which are on the Name tab page of the Tab_Customer canvas that appears in the Layout Editor as shown in the Exhibit. The Tab_Customer tabbed canvas is displayed on the Customer_CV content canvas as shown in the Exhibit.
What must you do to accommodate the additional label and text item and to display the middle name?
A. increase the Width property of the Customer_CV canvas only.
B. increase the Width property of the Tab_Customer canvas only.
C. increase the Width properties of only the Customer_CV canvas and the Tab_Customer canvas.
D. increase the Width properties of the Customer_CV canvas, the Tab_Customer canvas, and the name tab page.
You want to use the Forms Debugger to diagnose a problem with the RAISE_STATUS program unit that is stored in the database.
Forms Builder, you set a breakpoint in the stored code, and then run the Human Resources form in debug mode. You click the Raise_Salaries button, which has a When Button Pressed trigger that calls RAISE_SALARIES.
However, you are unable to see the RAISE_SALARIES procedure when you step through the code, and it does not appear in the stack frame. What could be the reason for this problem?
A. You are not connected to the database.
B. The stored program unit was not compiled with the debug information included.
C. The breakpoint should have been set in the When-Button-Pressed trigger, not in the stored program unit.
D. You cannot use the Forms Debugger to diagnose problems with stored program units.
You have a form that called a database stored procedure. You do not want processing to continue, so
immediately after the call to the stored procedure, you add the following code:
IF NOT FORM_SUCCESS THEN
MESSAGE ('Stored Procedure failure');
RAISE FORM_TRIGGER_FAILURE;
END IF;
You test the code and input some data that intentionally causes the stored procedure to fail. However, the
message that you defined does not appear. What are two possible reasons for this?
A. You must handle database errors in an exception clause of the trigger.
B. You must test for FORM_FAILURE when testing for failure of a stored procedure.
C. You must test for FORM_FATAL when testing for failure of a stored procedure.
D. FORM_SUCCESS tests for failure of Forms built-ins, not stored procedures.
E. You cannot test for failure of a stored procedure, because database errors are transparent to Forms.
You wish to use a javaBean in a form. This javaBean has no visible component.
You use the Layout Editor to create a bean area item that implements this JavaBean. You want to be able to see the bean area item in the Layout Editor so that you can easily interact with it at design time.
What can you do to ensure that the bean area item does not appear on the form at run time?
A. Set its Visible property to No.
B. Set its Height and Width properties to 1.
C. Set its Implementation class programmatically at run time.
D. You do not have to do anything; if Implementation Class does not display a visible component, the bean area does not show at run time.
E. You cannot avoid displaying the Bean area at run time.
View the Exhibit.
You are attempting to drag the Control and CV_Order objects to an object group as shown in the Exhibit, but you are unable to release them in the Object Group Children node of the object group.
What is the reason for this?
A. You cannot drag a canvas to an object group.
B. You cannot drag a block to an object group.
C. You need separate object groups for different types of objects.
D. You cannot drag multiple types of objects to an object group at the same time.
E. You should drag them to the ObjectGroup96 node, not to its Object Group Children node.
A user at a remote location reports a problem that occurs when the Orders; form runs and the user clicks the invoice button. You are not able to reproduce the problem, so you decide to use remote debugging.
The steps involved in diagnosing the problem are listed below, but they are ordered incorrectly. What is the correct sequence of Steps?
1.
You set a breakpoint in the When Button-Pressed trigger for the invoice button.
2.
The user's screen goes blank.
3.
The user reports the host and port to you.
4.
You uses the debugger to step through the code.
5.
The user clicks a button that calls DEBUG.ATTACH.
6.
You attach to the user's process.
7.
You open the Orders.fmb file from which the running .fmx was generated.
8.
The user clicks the invoice button.
A. 5, 3, 6, 7, 1, 8, 2, 4
B. 8, 3, 6, 5, 4, 7, 1, 2
C. 7, 1, 3, 6, 5, 1, 8, 4
D. 3, 6, 5, 7, 8, 1, 2, 4
Identify a function of the Forms Servlet.
A. It creates a dynamic HTML file.
B. It starts a Forms runtime session.
C. It manages network requests from the Forms Client.
D. It connects to and communicates with the database server.
E. It renders the Forms Services application display for the user.
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Oracle exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 1Z0-151 exam preparations and Oracle certification application, do not hesitate to visit our Vcedump.com to find your solutions here.