UPD_ITEM_HELP Procedure
The UPD_ITEM_HELP procedure updates the help text for the specified table and column. This user interface default is used when you create a form based upon the table and select to include the specified column.
                  
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_HELP (
    p_table_name            IN VARCHAR2,
    p_column_name           IN VARCHAR2,
    p_help_text             IN VARCHAR2 DEFAULT NULL);
Parameters
Table 34-19 UPD_ITEM_HELP Parameters
| Parameter | Description | 
|---|---|
| 
                                  
  | 
                              
                                  Table name  | 
                           
| 
                                  
  | 
                              
                                  Column name  | 
                           
| 
                                  
  | 
                              
                                  Desired help text  | 
                           
Example
This example demonstrates how to set the User Interface Item Help Text default for the DEPTNO column in the DEPT table.
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_HELP(
   p_table_name => 'DEPT',
   p_column_name => 'DEPTNO',
   p_help_text => 'The number assigned to the department.');
Parent topic: APEX_UI_DEFAULT_UPDATE