58.14 UPD_FORM_REGION_TITLE Procedure
The UPD_FORM_REGION_TITLE
procedure updates the Form Region Title user interface default. User interface defaults are used in wizards when you create a form based upon the specified table.
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_FORM_REGION_TITLE (
p_table_name IN VARCHAR2,
p_form_region_title IN VARCHAR2 DEFAULT NULL );
Parameters
Parameter | Description |
---|---|
p_table_name |
Table name. |
p_form_region_title |
Desired form region title. |
Example
This example demonstrates how to set the Forms Region Title user interface default on the DEPT table.
APEX_UI_DEFAULT_UPDATE.UPD_FORM_REGION_TITLE (
p_table_name => 'DEPT',
p_form_region_title => 'Department Details');
Parent topic: APEX_UI_DEFAULT_UPDATE