Home > APEX_UI_DEFAULT > UPD_REPORT_FORMAT...
'The UPD_REPORT_FORMAT_MASK
procedure sets the report format mask user interface default. This user interface default will be used by wizards when you select to create a report based upon the table and include the specified column. Report format mask is typically used to format numbers and dates.
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_REPORT_FORMAT_MASK ( p_table_name IN VARCHAR2, p_column_name IN VARCHAR2, p_format_mask IN VARCHAR2 DEFAULT NULL );
Parameters
Table: UPD_REPORT_FORMAT_MASK Parameters describes the parameters available in the UPD_REPORT_FORMAT_MASK
procedure.
UPD_REPORT_FORMAT_MASK Parameters
Parameter | Description |
---|---|
|
Table name |
|
Column name |
|
Format mask to be associated with the column whenever it is included in a report |
Example
APEX_UI_DEFAULT_UPDATE.UPD_REPORT_FORMAT_MASK( p_table_name => 'EMP', p_column_name => 'HIREDATE', p_format_mask=> 'DD-MON-YYYY');