45.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
Table 45-14 UPDATE_FORM_REGION_TITLE Parameters
| Parameter | Description | 
|---|---|
| 
 | Table name | 
| 
 | 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  => 'Deptartment Details');
Parent topic: APEX_UI_DEFAULT_UPDATE