Exam Details

  • Exam Code
    :1Z0-151
  • Exam Name
    :Oracle Fusion Middleware 11g: Build Applications with Oracle Forms
  • Certification
    :Oracle Certifications
  • Vendor
    :Oracle
  • Total Questions
    :90 Q&As
  • Last Updated
    :Mar 27, 2025

Oracle Oracle Certifications 1Z0-151 Questions & Answers

  • Question 21:

    To troubleshoot a problem with a form, you have added a call to the MESSAGE () built-in at the beginning of the When-Validate-Item trigger of the Customer_Id then in the Orders Block of the Orders form. The message simply states that the trigger is firing.

    You run the form, make a change in Customer_Id, and then tab out of the item but the message does not appear. What are two possible causes for this problem?

    A. The form is in Enter-Query mode.

    B. The item is using an LOV for validation.

    C. The validation unit of the form needs to be changed.

    D. The MESSAGE () built-in is not allowed in validation triggers.

    E. There is a syntax error in the call to the MESSAGE() built-in.

    F. Validation for the Customer_Id item failed.

  • Question 22:

    You are using a PL/SQL program unit in the Orders form to display an image for the selected product in

    the Order Items block. The code is called from several different triggers in the form.

    The code (with line numbers added) is:

    1.

    PROCEDURE get_image IS

    2.

    Product_image_id ITEM := FIND_ITEM ('control.product_image');

    3.

    Filename VARCHAR2(250);

    4.

    BEGIN

    5.

    Filename := TO_CHAR(:order_items.product_id) | | '.jpg';

    6.

    READ_IMAGE_FILE (filename, 'jpeg', product_image_id);

    7.

    END;

    Management wants all codes to be in PL/SQL libraries to facilitate reuse. You create a PL/SQL library and

    drag the program unit from the orders form to the Program Units node of the library.

    You then delete the program unit from the Orders form.

    What three things must you do to compile the PL/SQL library and to use the code in the Orders form?

    A. Change line 5 to: filename := to_char(name_in 'order_items.product_id' )) | | '.jpg';.

    B. insert the RELEASE keyword between lines 1 and 2.

    C. Delete the BEGIN and END statements (lines 4 and 7).

    D. Change product_id to an in parameter and filename to an OUT parameter.

    E. Save the library.

    F. Generate the a .plx file.

    G. Attach the library to the orders form.

    H. Change the way the program unit is called in the Orders form.

  • Question 23:

    You have written a When-Validate-Item trigger. You want this trigger to fire even if the form is in Enter-Query mode. What must you do to achieve this?

    A. Use the following code at the start of the When Validate-Item trigger: :SYSTEM.mode := 'ENTER-QUERY';

    B. Use the following code at the start of the When Validate Item trigger: :SYSTEM.mode := 'NORMAL';

    C. Set the Fire in Enter Query Mode property of the When-Validate-Item trigger.

    D. You do not need to do anything, because the default for the When Validate Item trigger is to fire in Enter-Query mode.

    E. You cannot achieve this, because the When-Validate-Item trigger cannot be set to fire in Enter-Query mode.

  • Question 24:

    You have been assigned to maintain the Orders form. Users complain that if the cursor is in the in the Orders block, they cannot navigate to the Order Items block by clicking a text item in that block. They must click the Next Block button to navigate from the Orders block to the Order Items block.

    How should you investigate the source of the problem?

    A. Check the Pre-Text-Item and Post-Text-Item triggers, because users may be encountering a navigation trap.

    B. Check the Navigation properties of the Orders block that have non-default values.

    C. Check the Navigation properties of the Order Items block that have non-default values.

    D. Check the Navigation properties of the items in the Orders block that have non-default values.

    E. Check the Navigation properties of the form that have non-default values.

    F. Check that the items in the Order Items block are enabled.

  • Question 25:

    You have coded the following When Button Pressed trigger:

    EXECUTE_QUERY;

    MESSAGE ('Query executed on block');

    MESSAGE ('click next to navigate the next record');

    When the user clicks the button, how is the message "Query executed on block" displayed?

    A. as a system message on the status line

    B. as a system message in a system alert

    C. as a system message in an application alert

    D. as an application message on the status line

    E. as an application message in a system alert

    F. as an application message in an application alert

  • Question 26:

    Which two actions are always necessary when deploying Forms applications that were developed on Windows platform to a UNIX middle tier server?

    A. moving the forms executable files from the development machine to the middle-tier machine

    B. compiling the Forms modules on the middle tier machine

    C. creating a menu module for the application

    D. compiling the Forms modules on the development machine

    E. moving the Forms source files from the development machine to the middle tier machine

    F. creating a Forms PL/SQL library file to contain the application logic

    G. installing forms Builder on the middle-tier machine

  • Question 27:

    View the Exhibit.

    The Departments form has form level triggers defined as shown in the Exhibit. You have enabled array DML for the Departments block by setting its DML array size to 5 and setting the Primary Key property of Department id to Yes. You set runtime preferences for Forms Builder to use array processing.

    You want to test that array processing is actually occurring, so, as shown in the Exhibit, the On- Update, On-Delete, and on insert triggers have code that:

    1.

    Displays a message to indicate which trigger is firing for which record?

    2.

    Does the thing (either updates, deletes, or inserts)

    The other triggers simply display a message, indicating the trigger that is firing.

    You run the form from Forms Builder, but from the messages, you can tell that array processing is not occurring. What should you change so that array DML gets implemented?

    A. Delete the "On-" triggers; these triggers remove default processing, including array processing.

    B. Set the DML array size to a value of 10 or greater; for array sizes loss than 10, array processing Is inefficient, and so is not performed.

    C. Use the SYNCHRONIZE built-in after the MESSAGE built-in; otherwise, the message are not displayed until the processing is finished, giving the appearance that array processing is not taking place.

    D. Set the Enforce Primary Key property of the Department block to Yes; it is not enough to just set the Department_Id to be the primary key.

  • Question 28:

    There are certain errors that are specific to the Salary item on the Employees form. You want to trap these errors only when the user navigates from the Salary item.

    You have a form-level On-Error trigger that traps errors that apply to the form in general, but yon additionally code an item-level On-Error trigger for the Salary item.

    When testing the form, you find that the general errors are not trapped when you navigate from the Salary item. What can you do to correct this problem?

    A. Call the form level On-Error trigger from the item-level On-Error trigger.

    B. Call the item-level On-Error trigger from the form-level On-Error trigger.

    C. Change the Execution Hierarchy property for the item-level On-Error trigger.

    D. Change the Execution Hierarchy property for the form-level On-Error trigger.

    E. Move all the code to a PL/SQL program unit and call it from both the form level and item level On-Error triggers.

  • Question 29:

    View the Exhibit to examine the form.

    The text items (Field1, Field2, and Field3) and the button (Check_Values) are in the CONTROL block. The Mouse Navigate property of the button has been set to No.

    The following code as been written in a When-Button-Pressed trigger on the Check_Values button:

    MESSAGE(:field1| | ' - ' | | :SYSTEM.cursor_item | | ' - ' | | :SYSTEM.trigger_item);

    With the focus in Field1 and the values 1, 2, and 3 in the text items, what message will be displayed when the button is clicked.

    A. -4

    B. 1 -2 -3

    C. 1 field1 Check Values

    D. Field1 -1 Check Values

    E. 1 CONTROL.FIELD1 CONTROL.FIELD1

    F. 1 CONTROL.FIELD1 CONTROL.CHECK_VALUES

    G. :field1 - :SYSTEM.cursor_item - :SYSTEM.trigger_item

  • Question 30:

    View the Exhibit.

    The orders form contains two canvases. Orders_CV displays one order and all of its order items. Help-CV displays context-sensitive help.

    When users invoke the help screen for the Customer_Id item, the help information obscures the Custormer_Id item, as shown in the Exhibit. Users would like to be able to see both the item and its help information simultaneously.

    How can you move the help information to the right so that the Customer_Id item is visible?

    A. increase the Viewport X Position on the Help_CV canvas.

    B. increase the Viewport X Position on Canvas on the Orders_CV canvas.

    C. Decrease the Width on the Help_CV canvas.

    D. in the Layout Editor for the Orders_CV canvas, select View > Stacked Views, and then select the Help_CV canvas. Drag the Help_CV canvas to the right of the Customer_Id item.

Tips on How to Prepare for the Exams

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.