Home > APEX_UI_DEFAULT > UPD_ITEM_DISPLAY&...
'The UPD_ITEM_DISPLAY_WIDTH
procedure sets the item display width user interface default. This user interface default will be used by wizards when you select to create a form based upon the table and include the specified column.n.
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_DISPLAY_WIDTH ( p_table_name IN VARCHAR2, p_column_name IN VARCHAR2, p_display_width IN NUMBER );
Parameters
Table: UPD_ITEM_DISPLAY_WIDTH Parameters describes the parameters available in the UPD_ITEM_DISPLAY_WIDTH
procedure.
UPD_ITEM_DISPLAY_WIDTH Parameters
Parameter | Description |
---|---|
|
Table name |
|
Column name |
|
Display width of any items created based upon this column |
Example
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_DISPLAY_WIDTH( p_table_name => 'DEPT', p_column_name => 'DEPTNO', p_display_width => 5);