Search Results jtf_grid_datasources_vl
Overview
The view APPS.JTF_GRID_DATASOURCES_VL is a multilingual (MLS) validation view within the Oracle E-Business Suite CRM Foundation (JTF) product family. It exposes the translation-independent and translation-dependent attributes of grid data sources configured for use by the JTF grid infrastructure, which underlies many CRM and self-service user interface components in EBS 12.1.1 and 12.2.2. The view presents a joined, language-filtered record set so that applications and reports can retrieve a grid data source definition together with its user-facing title in the session's active language. It is a reporting and integration convenience layer: rather than querying the base and translation tables separately and applying a language filter manually, consumers read from a single validated object whose status is VALID in the APPS schema.
As an MLS view, JTF_GRID_DATASOURCES_VL is not a physical table and stores no data of its own. Its role is to abstract the underlying base and translation tables and enforce the standard language resolution rule, supplying the correct translated title text based on the user's session language. This makes it suitable for ad-hoc reporting, data extraction, and integration queries that need grid metadata while respecting Oracle's translation model.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view is defined over two objects, both referenced as synonyms in the APPS schema:
- JTF_GRID_DATASOURCES_B — the base table holding language-independent attributes of each grid data source.
- JTF_GRID_DATASOURCES_TL — the translation table holding the translated title text keyed by language.
The view's SELECT joins these two relations on GRID_DATASOURCE_NAME and restricts the translation row with T.LANGUAGE = USERENV('LANG'), ensuring that only the record matching the current language is returned. The body of the view aliases the base table as B and the translation table as T, concatenating the base and translated columns into the final projected result set. Because the join returns a single combined row per grid data source for the active language, callers do not need to manage the language dimension themselves.
Key Columns
The view projects the following columns, drawn from the base and translation tables:
- ROW_ID — the base table ROWID, exposed for identification or locking scenarios.
- GRID_DATASOURCE_NAME — the primary key linking base and translation rows; identifies the grid data source.
- TITLE_TEXT — the translated, user-facing title, sourced from JTF_GRID_DATASOURCES_TL.
- DB_VIEW_NAME — the database view that supplies the grid's runtime data.
- WHERE_CLAUSE — an optional filter applied to the underlying data source.
- MAX_QUERIED_ROWS and FETCH_SIZE — parameters controlling the volume and batch size of rows retrieved.
- DEFAULT_ROW_HEIGHT, ALT_COLOR_CODE, and ALT_COLOR_INTERVAL — presentation attributes governing row sizing and alternating row coloring.
- APPLICATION_ID — the owning application for the data source definition.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_DATE, CREATED_BY — standard EBS auditing columns.
Common Use Cases and Queries
Typical scenarios include auditing configured grid data sources, verifying translation accuracy, and documenting the runtime view and fetch parameters used by JTF grids. A basic query lists the identifier, title, and backing view:
SELECT GRID_DATASOURCE_NAME, TITLE_TEXT, DB_VIEW_NAME, MAX_QUERIED_ROWS, FETCH_SIZE FROM APPS.JTF_GRID_DATASOURCES_VL;
To obtain the filter and presentation settings for a specific data source, constrain on the name:
SELECT GRID_DATASOURCE_NAME, TITLE_TEXT, WHERE_CLAUSE,
ALT_COLOR_CODE, ALT_COLOR_INTERVAL, DEFAULT_ROW_HEIGHT
FROM APPS.JTF_GRID_DATASOURCES_VL
WHERE GRID_DATASOURCE_NAME = :p_name;
Because the view applies USERENV('LANG') automatically, running these queries under a given session language returns the corresponding translated title without further filtering. Note that the underlying objects are referenced as synonyms owned by APPS, so the view should be queried from an APPS context or with appropriate privileges.
-
View: JTF_GRID_DATASOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_DATASOURCES_VL, object_name:JTF_GRID_DATASOURCES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS view for JTF_GRID_DATASOURCES_B and JTF_GRID_DATASOURCES_TL , implementation_dba_data: APPS.JTF_GRID_DATASOURCES_VL ,
-
View: JTF_GRID_DATASOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_DATASOURCES_VL, object_name:JTF_GRID_DATASOURCES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS view for JTF_GRID_DATASOURCES_B and JTF_GRID_DATASOURCES_TL , implementation_dba_data: APPS.JTF_GRID_DATASOURCES_VL ,
-
SYNONYM: APPS.JTF_GRID_DATASOURCES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_DATASOURCES_B, status:VALID,
-
SYNONYM: APPS.JTF_GRID_DATASOURCES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_DATASOURCES_TL, status:VALID,
-
PACKAGE BODY: APPS.JTF_GRID_DATASOURCES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRID_DATASOURCES_PKG, status:VALID,
-
SYNONYM: APPS.JTF_GRID_DATASOURCES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_DATASOURCES_TL, status:VALID,
-
SYNONYM: APPS.JTF_GRID_DATASOURCES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_DATASOURCES_B, status:VALID,
-
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,
-
PACKAGE BODY: APPS.JTF_GRID_DATASOURCES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRID_DATASOURCES_PKG, status:VALID,
-
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
-
VIEW: APPS.JTF_GRID_DATASOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_DATASOURCES_VL, object_name:JTF_GRID_DATASOURCES_VL, status:VALID,
-
VIEW: APPS.JTF_GRID_DATASOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_GRID_DATASOURCES_VL, object_name:JTF_GRID_DATASOURCES_VL, status:VALID,
-
APPS.JTF_GRIDDB SQL Statements
12.1.1
-
APPS.JTF_GRIDDB SQL Statements
12.2.2
-
APPS.JTF_GRID_DATASOURCES_PKG SQL Statements
12.1.1
-
APPS.JTF_GRID_DATASOURCES_PKG SQL Statements
12.2.2
-
APPS.JTF_GRIDDB dependencies on JTF_GRID_DATASOURCES_VL
12.1.1
-
APPS.JTF_GRID_DATASOURCES_PKG dependencies on JTF_GRID_DATASOURCES_VL
12.2.2
-
APPS.JTF_GRID_DATASOURCES_PKG dependencies on JTF_GRID_DATASOURCES_VL
12.1.1
-
APPS.JTF_GRIDDB dependencies on JTF_GRID_DATASOURCES_VL
12.2.2
-
PACKAGE BODY: APPS.JTF_GRID_DATASOURCES_PKG
12.1.1
-
PACKAGE BODY: APPS.JTF_GRID_DATASOURCES_PKG
12.2.2
-
APPS.JTF_GRIDDB dependencies on JTF_GRID_SORT_COLS
12.2.2
-
APPS.JTF_GRIDDB dependencies on JTF_GRID_SORT_COLS
12.1.1
-
PACKAGE BODY: APPS.OKC_COP_PVT
12.2.2
-
PACKAGE BODY: APPS.OKC_COP_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.2.2
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.1.1
-
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 ,
-
APPS.OKC_COP_PVT dependencies on OKC_API
12.1.1
-
APPS.OKC_COP_PVT dependencies on OKC_API
12.2.2
-
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 ,