42.23 UPD_REPORT_REGION_TITLE Procedure
The UPD_REPORT_REGION_TITLE procedure sets the Report Region Title. User interface defaults are used in wizards when a report is created on a table.
                  
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_REPORT_REGION_TITLE (
    p_table_name            IN VARCHAR2,
    p_report_region_title   IN VARCHAR2 DEFAULT NULL);
Parameters
Table 42-23 UPD_REPORT_REGION_TITLE Parameters
| Parameter | Description | 
|---|---|
| 
 | Table name | 
| 
 | Desired report region title | 
Example
This example demonstrates how to set the Reports Region Title user interface default on the DEPT table.
APEX_UI_DEFAULT_UPDATE.UPD_REPORT_REGION_TITLE (
    p_table_name            => 'DEPT',
    p_report_region_title   => 'Departments');
Parent topic: APEX_UI_DEFAULT_UPDATE