1z0-151 무료 덤프문제 온라인 액세스
| 시험코드: | 1z0-151 |
| 시험이름: | Oracle Fusion Middleware 11g: Build Applications with Oracle Forms |
| 인증사: | Oracle |
| 무료 덤프 문항수: | 90 |
| 업로드 날짜: | 2025-12-18 |
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.
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?
You want to display fields of a form module on multiple layouts that are visible simultaneously, what can enable you to achieve this?
View the Exhibit.
You have defined the window, canvas, and text items shown in the Exhibit. What happens when click Run Form?
In the Orders form, users often have a need to return to the first record. Because there are many employee records, it may take a long time for them to scroll up to the first record, so you create a button with the label First Record.
When users click the first Record button, you want to display your own custom message instead of the system message "FRM-40100: At first record." The system message should be displayed in other cases when users attempt to scroll above the first record.
You code the following When-Button-Pressed trigger:
:SYSTEM.mesage_level := '5'
UP;
WHILE FORM_SUCCESS LOOP
UP;
END LOOP;
MESSAGE ('This is the first Order');
The button works perfectly to return to the first record and display your custom message instead of the system message. However, users report that as they continue to use the form after clicking the button, no longer see other helpful messages. For example, the message "FRM 40102: Record must be entered or deleted first" no longer appears when they attempt to scroll past the last record.
How can you resolve this Issue so that all system messages continue to be displayed after the trigger code runs?