Home > APEX_UI_DEFAULT > UPD_DISPLAY_IN
The UPD_DISPLAY_IN_FORM
procedure sets the display in form user interface defaults. 'This user interface default will be used by wizards when you select to create a form based upon the table. It controls whether the column will be included by default or not.
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_DISPLAY_IN_FORM ( p_table_name IN VARCHAR2, p_column_name IN VARCHAR2, p_display_in_form IN VARCHAR2 DEFAULT NULL );
Parameters
Table: UPD_DISPLAY_IN_FORM Parameters describes the parameters available in the UPD_DISPLAY_IN_FORM
procedure.
UPD_DISPLAY_IN_FORM Parameters
Parameter | Description |
---|---|
|
Table name |
|
Column name |
|
Determines whether or not to display in the form by default, valid values are |
Example
APEX_UI_DEFAULT_UPDATE.UPD_DISPLAY_IN_FORM( p_table_name => 'DEPT', p_column_name => 'DEPTNO', p_display_in_form => 'N');