Home > APEX_UI_DEFAULT > UPD_ITEM_HELP Pro...
The UPD_ITEM_HELP
procedure updates the help text for the specified table and column. This user interface default will be 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: UPD_ITEM_HELP Parameters describes the parameters available in the UPD_ITEM_HELP
procedure.
UPD_ITEM_HELP Parameters
Parameter | Description |
---|---|
|
Table name |
|
Column name |
|
Desired help text |
Example
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_HELP( p_table_name => 'DEPT', p_column_name => 'DEPTNO', p_help_text => 'The number assigned to the department.');