50.21 UPD_REPORT_ALIGNMENT Procedure
The UPD_REPORT_ALIGNMENT procedure sets the report alignment user interface default. This user interface default is used by wizards when you select to create a report based upon the table and include the specified column and determines if the report column should be left, center, or right justified.
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_REPORT_ALIGNMENT (
    p_table_name            IN VARCHAR2,
    p_column_name           IN VARCHAR2,
    p_report_alignment      IN VARCHAR2);
Parameters
Table 50-21 UPD_REPORT_ALIGNMENT Parameters
| Parameter | Description | 
|---|---|
| 
 | Table name. | 
| 
 | Column name. | 
| 
 | Defines the alignment of the column in a report. Valid values are L (left), C (center) and R (right). | 
Example
In the following example, when creating a Report against the DEPT table, the default column alignment on the DEPTNO column is set to Right justified.
APEX_UI_DEFAULT_UPDATE.UPD_REPORT_ALIGNMENT(
    p_table_name => 'DEPT',
    p_column_name => 'DEPTNO',
    p_report_alignment => 'R');
Parent topic: APEX_UI_DEFAULT_UPDATE