Top 50 Oracle Forms And Reports Interview Questions You Must Prepare 25.Apr.2024

An Ole server application creates ole Objects that are embedded or linked in ole Containers ex. Ole servers are ms_word & ms_excel. OLE containers provide a place to store, display and manipulate objects that are created by ole server applications. Ex. oracle forms is an example of an ole Container.

A static record group is not associated with a query, rather, you define its structure and row values at design time, and they remain fixed at runtime.

performing the calculation in the query is faster.

A user named editor has the same text editing functionality as the default editor, but, because it is a named object, you can specify editor attributes such as windows display size, position, and title.

Fires during the execute query and count query processing after oracle forms constructs the select statement to be issued, but before the statement is actually issued. The pre-query trigger fires just before oracle forms issues the select statement to the database after the operator as define the example records by entering the query criteria in enter query mode.Pre-query trigger fires before pre-select trigger.

To indirectly reference a parameter use the NAME IN, COPY 'built-ins to indirectly set and reference the parameters value' Example name_in ('capital parameter my param'), Copy ('SURESH','Parameter my_param')

The console includes the status line and message line, and is displayed at the bottom of the window to which it is assigned.To specify that the console should be displayed, set the console window form property to the name of any window in the form. To include the console, set console window to Null.

The default file extensions indicate the library module type and storage format .pll - pl/sql library module binary

Issues dynamic Sql statements at run time, including server side pl/SQl and DDL

The term is terminal definition file that describes the terminal form which you are using r20run.

  • Get_group_char_cell(function)
  • Get_groupcell(function)
  • Get_group_number_cell(function)

Master Deletes Property Resulting Triggers
---------------------------------------------------
Isolated On-Clear-Details
On-Populate-Details

  • Query Record Groups
  • NonQuery Record Groups
  • State Record Groups

The text list style list item appears as a rectangular box which displays the fixed number of values. When the text list contains values that can not be displayed, a vertical scroll bar appears, allowing the operator to view and select undisplayed values.

To specify the order of individual group evaluation in a cross products.

Vbx control provide a simple method of building and enhancing user interfaces. The controls can use to obtain user inputs and display program outputs.vbx control where originally develop as extensions for the ms visual basic environments and include such items as sliders, rides and knobs.

On-Check_delete_masterOn_clear_detailsOn_populate_details

Because for each query, report has to open a separate cursor and has to rebind, execute and fetch data

System.mouse_button_pressedSystem.mouse_button_shift

Visual attributes are the font, color, pattern proprieties that you set for form and menu objects that appear in your application interface.

find_timercreate_timerdelete_timer

Post-form commit fires once during the post and commit tractions process, after the database commit occurs. The post-form-commit trigger fires after inserts, updates and deletes have been posted to the database but before the tractions have been finalized in the issuing the command. The post-database-commit trigger fires after oracle forms issues the commit to finalized tractions.

Using tractional triggers we can control or modify the default functionality of the oracle forms.

Libraries provide a convenient me of storing client-side program units and sharing them among multiple applications. Once you create a library, you can attach it to any other form, menu, or library modules. When you can call library program units from triggers menu items commands and user named routine, you write in the modules to which you have attach the library. When a library attaches another library, program units in the first library can reference program units in the attached library. Library support dynamic loading-that is library program units are loaded into an application only when needed. This can significantly reduce the run-time memory requirements of applications.

The maximum no of chars the parameter can store is only valid for char parameters, which can be upto 64K. No parameters default to 23Bytes and Date parameter default to 7Bytes.

When the value of a data parameter being passed to a called product is always the name of the record group defined in the current form. Data parameters are used to pass data to products invoked with the run_product built-in subprogram.

 

Parameters provide a simple mechanism for defining and setting the valuesof inputs that are required by a form at startup. Form parameters are variables of type char,number,date that you define at design time.

Any event that makes a different record in the master block the current record is a coordination causing event.

Removes the source code from the library file and generates a library files that contains only pcode. The resulting file can be used for final deployment, but can not be subsequently edited in the designer.ex. f45gen module=old_lib.pll userid=scott/tiger strip_source YES output_file

  1. set_item_property
  2. get_item_property
  3. (by setting the LOV_NAME property)

A property clause is a named object that contains a list of properties and their settings. Once you create a property clause you can base other object on it. An object based on a property can inherit the setting of any property in the clause that makes sense for that object.

  • GET_GROUP_ROW_COUNT(function)
  • GET_GROUP_SELECTION_COUNT(function)
  • GET_GROUP_SELECTION(function)
  • RESET_GROUP_SELECTION(procedure)
  • SET_GROUP_SELECTION(procedure)
  • UNSET_GROUP_SELECTION(procedure)

When-image-activated fires when the operators double clicks on an image itemwhen-image-pressed fires when an operator clicks or double clicks on an image item

  • ADD-GROUP_COLUMN (function)
  • ADD_GROUP_ROW (procedure)
  • DELETE_GROUP_ROW(procedure)

After the query is executed but before the report is executed and the records are displayed.

There are two phases of block coordination: the clear phase and the population phase. During, the clear phase, Oracle Forms navigates internally to the detail block and flushes the obsolete detail records. During the population phase, Oracle Forms issues a SELECT statement to repopulate the detail block with detail records associated with the new master record. These operations are accomplished through the execution of triggers.

A way in which to pass control (and possibly arguments ) form Oracle report to another Oracle products of 3 GL and then return control ( and ) back to Oracle reports.

When one form invokes another form by executing new_form oracle form exits the first form and releases its memory before loading the new form calling new form completely replace the first with the second. If there are changes pending in the first form, the operator will be prompted to save them before the new form is loaded.

Record group column names cannot exceed 30 characters.

A record group is an internal Oracle Forms that structure that has a column/row framework similar to a database table. However, unlike database tables, record groups are separate objects that belong to the form module which they are defined.