Search Results jtf_grid_cols_vl
Overview
JTF_GRID_COLS_VL is a Multi-Language Support (MLS) validation view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the JTF – CRM Foundation product family and presents translatable column-definition metadata for the grid (tabular) user interface components used across CRM applications. The view joins the base table JTF_GRID_COLS_B, which stores language-independent grid column attributes, with JTF_GRID_COLS_TL, which stores the translatable label text for each column. Because it is a _VL view, it returns one row per grid column in the session's current language, resolved through USERENV('LANG'). The status is documented as VALID.
The view is the primary supported interface for querying grid column configuration, including the VISIBLE_FLAG attribute that governs whether a given column is displayed to the end user. It is used for reporting on grid layouts, diagnosing display behavior, and integration scenarios where external tools must understand the structure of a CRM grid datasource.
Underlying Base Objects
The view is defined over two documented base objects, both referenced as synonyms:
- JTF_GRID_COLS_B — the base table holding language-independent column definitions, keyed by GRID_DATASOURCE_NAME and GRID_COL_ALIAS.
- JTF_GRID_COLS_TL — the translation table holding LABEL_TEXT per language.
The join condition is B.GRID_DATASOURCE_NAME = T.GRID_DATASOURCE_NAME AND B.GRID_COL_ALIAS = T.GRID_COL_ALIAS AND T.LANGUAGE = USERENV('LANG'). The view also exposes ROW_ID from B.ROWID. Consequently, a column definition appears in this view only if a translation row exists for the active language; otherwise the column is filtered out entirely.
Key Columns
- GRID_DATASOURCE_NAME / GRID_COL_ALIAS — composite identifier of the grid column.
- DB_COL_NAME / DATA_TYPE_CODE — the underlying database column and its data type.
- VISIBLE_FLAG — controls whether the column is displayed in the grid. This is the attribute most frequently queried.
- FREEZE_VISIBLE_FLAG — controls whether the visible column is frozen in place during horizontal scrolling.
- SORTABLE_FLAG / SORT_ASC_BY_DEFAULT_FLAG / DB_SORT_COLUMN — sorting behavior.
- QUERY_SEQ / QUERY_DISPLAY_SEQ / QUERY_ALLOWED_FLAG — query-by-example ordering and availability.
- DISPLAY_SEQ / DISPLAY_TYPE_CODE / DISPLAY_HSIZE — presentation ordering, control type, and width.
- DISPLAY_FORMAT_TYPE_CODE / DISPLAY_FORMAT_MASK — formatting rules.
- LABEL_TEXT — the translated column header (from the TL table).
- CHECKBOX_* fields, HEADER_ALIGNMENT_CODE, CELL_ALIGNMENT_CODE, VALIDATION_OBJECT_CODE, FIRE_POST_QUERY_FLAG — rendering and validation attributes.
- Standard WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include auditing which columns are visible on a given grid datasource, comparing visibility configuration across environments, and feeding metadata to integration layers.
List all visible columns for a datasource:
SELECT GRID_COL_ALIAS, DB_COL_NAME, LABEL_TEXT, DISPLAY_SEQ FROM APPS.JTF_GRID_COLS_VL WHERE GRID_DATASOURCE_NAME = :datasource AND VISIBLE_FLAG = 'Y' ORDER BY DISPLAY_SEQ;
Compare frozen visible columns:
SELECT GRID_COL_ALIAS, LABEL_TEXT FROM APPS.JTF_GRID_COLS_VL WHERE GRID_DATASOURCE_NAME = :datasource AND FREEZE_VISIBLE_FLAG = 'Y';
Enumerate all datasources and their visible column counts:
SELECT GRID_DATASOURCE_NAME, COUNT(*) FROM APPS.JTF_GRID_COLS_VL WHERE VISIBLE_FLAG = 'Y' GROUP BY GRID_DATASOURCE_NAME;
Because the view depends on USERENV('LANG'), results are language-sensitive; queries intended for cross-language comparison should account for this by setting the session language or querying the base tables directly.
-
View: JTF_GRID_COLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_COLS_VL, object_name:JTF_GRID_COLS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS view for JTF_GRID_COLS_B and JTF_GRID_COLS_TL , implementation_dba_data: APPS.JTF_GRID_COLS_VL ,
-
View: JTF_GRID_COLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_COLS_VL, object_name:JTF_GRID_COLS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS view for JTF_GRID_COLS_B and JTF_GRID_COLS_TL , implementation_dba_data: APPS.JTF_GRID_COLS_VL ,
-
SYNONYM: APPS.JTF_GRID_COLS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_COLS_TL, status:VALID,
-
SYNONYM: APPS.JTF_GRID_COLS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_COLS_B, status:VALID,
-
SYNONYM: APPS.JTF_GRID_COLS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_COLS_B, status:VALID,
-
SYNONYM: APPS.JTF_GRID_COLS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_COLS_TL, status:VALID,
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRID_COLS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRID_COLS_PKG, status:VALID,
-
APPS.JTF_GRIDDB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRIDDB, status:VALID,
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRIDDB, status:VALID,
-
APPS.JTF_GRIDDB SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JTF_GRID_COLS_PKG SQL Statements
12.1.1
-
APPS.JTF_GRID_COLS_PKG SQL Statements
12.2.2
-
VIEW: APPS.JTF_GRID_COLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_COLS_VL, object_name:JTF_GRID_COLS_VL, status:VALID,
-
VIEW: APPS.JTF_GRID_COLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_COLS_VL, object_name:JTF_GRID_COLS_VL, status:VALID,
-
APPS.JTF_GRIDDB dependencies on JTF_GRID_COLS_VL
12.2.2
-
APPS.JTF_GRID_COLS_PKG dependencies on JTF_GRID_COLS_VL
12.2.2
-
APPS.JTF_GRID_COLS_PKG dependencies on JTF_GRID_COLS_VL
12.1.1
-
APPS.JTF_GRIDDB dependencies on JTF_GRID_COLS_VL
12.1.1
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.2.2
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.1.1
-
APPS.JTF_GRIDDB dependencies on JTF_CUSTOM_GRID_COLS
12.1.1
-
APPS.JTF_GRIDDB dependencies on JTF_CUSTOM_GRID_COLS
12.2.2
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.1.1
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,