-
What are the Built-ins to display the user-named editor?
A user named editor can be displayed programmatically with the built in procedure SHOW-EDITOR, EDIT_TETITEM independent of any particular text item.
-
What is the difference between SHOW_EDITOR and EDIT_TEXTITEM?
Show editor is the generic built-in which accepts any editor name and takes some input string and returns modified output string. Whereas the edit_textitem built-in needs the input focus to be in the text item before the built-in is executed.
-
-
What is the "LOV of Validation" Property of an item? What is the use of it?
When LOV for Validation is set to True, Oracle Forms compares the current value of the text item to the values in the first column displayed in the LOV.Whenever the validation event occurs. If the value in the text item matches one of the values in the first column of the LOV, validation succeeds, the LOV is not displayed, and processing continues normally. If the value in the text item does not match...
-
What are the built_ins used the display the LOV?
Show_lov List_values
-
What are the built-ins that are used to Attach an LOV programmatically to an item?
set_item_propertyget_item_property(by setting the LOV_NAME property)
-
What are the built-ins that are used for setting the LOV properties at runtime?
Get_lov_property set_lov_property
-
What is a record group?
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.
-
How many number of columns a record group can have?
A record group can have an unlimited number of columns of type CHAR, LONG, NUMBER, or DATE provided that the total number of column does not exceed 64K.
-
What is a Query Record Group?
A query record group is a record group that has an associated SELECT statement. The columns in a query record group derive their default names, data types, had lengths from the database columns referenced in the SELECT statement. The records in query record group are the rows retrieved by the query associated with that record group.What is a Non Query Record Group?
-
What is a Static Record Group?
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.
-
What are the built-ins used for Creating and deleting groups?
CREATE-GROUP (function) CREATE_GROUP_FROM_QUERY(function) DELETE_GROUP(procedure)
-
What are the built -ins used for Modifying a groups structure?
ADD-GROUP_COLUMN (function) ADD_GROUP_ROW (procedure) DELETE_GROUP_ROW(procedure)
-
What are the built-ins used for Getting cell values?
GET_GROUP_CHAR_CELL (function) GET_GROUP_DATE_CELL(function) GET_GROUP_NUMBET_CELL(function)
-
What are built-ins used for Processing rows?
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)
-
What are the built-ins used for finding Object ID function?
FIND_GROUP(function) FIND_COLUMN(function)
-
-
What are the built-in used for getting cell values?
Get_group_char_cell(function)Get_group_date_cell(function)Get_group_number_cell(function)
-
What are the built-ins used for processing rows?
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)
-
What are the built-ins used for finding object ID functions?
Find_group(function)Find_column(function)
Oracle Concepts Interview Questions
Ans