Search Results jtf_grid_cols_b
Overview
JTF_GRID_COLS_B is a metadata repository table in the JTF (CRM Foundation) schema of Oracle E-Business Suite, present in both 12.1.1 and 12.2.2. It stores the definition of each column exposed by a spreadtable UI component — the interactive, sortable, resizable grid region used throughout CRM and self-service applications. Each row describes one column belonging to a named grid data source, capturing the physical database column it maps to, its display characteristics, sortability, validation behavior, and formatting rules. The table therefore acts as the runtime blueprint consulted by the JTF grid rendering engine when constructing a spreadtable at page execution time.
Because it is the foundation table (the "_B" suffix) for a translatable entity, JTF_GRID_COLS_B holds language-independent attribute definitions, while JTF_GRID_COLS_TL holds the translated column prompts and headers. ETRM classifies the table heuristically as hub-leaning within a Data Vault model, since it anchors a durable business key and is referenced by multiple dependent objects; this is a modeling suggestion rather than a physical EBS constraint.
Key Information Stored
The primary key is defined by JTF_GRID_COLS_B_PK, a composite of GRID_DATASOURCE_NAME and GRID_COL_ALIAS. A unique index, JTF_GRID_COLS_B_U1, extends this business key with ZD_EDITION_NAME to support edition-based redefinition. The most significant columns include:
- GRID_DATASOURCE_NAME — identifier of the parent grid data source; half of the composite business key.
- GRID_COL_ALIAS — the logical alias of the column as referenced by the grid; the other half of the business key.
- DB_COL_NAME — the underlying database column from which the grid column draws its value.
- DATA_TYPE_CODE — the data type governing rendering and parsing.
- QUERY_SEQ / QUERY_DISPLAY_SEQ — ordering used when the column is included in a generated query.
- DISPLAY_SEQ — left-to-right position of the column in the rendered grid.
- VISIBLE_FLAG, FREEZE_VISIBLE_FLAG, SORTABLE_FLAG, SORT_ASC_BY_DEFAULT_FLAG — display and sorting behavior flags.
- DISPLAY_TYPE_CODE, DISPLAY_HSIZE, HEADER_ALIGNMENT_CODE, CELL_ALIGNMENT_CODE — rendering and layout attributes.
- DISPLAY_FORMAT_TYPE_CODE, DISPLAY_FORMAT_MASK — formatting rules applied to displayed values.
- CHECKBOX_CHECKED_VALUE, CHECKBOX_UNCHECKED_VALUE, CHECKBOX_OTHER_VALUES — value mappings for checkbox-style columns.
- DB_CURRENCY_CODE_COL, DB_SORT_COLUMN — secondary column references for currency display and server-side sorting.
- VALIDATION_OBJECT_CODE — foreign key to JTF_OBJECTS_B identifying the validation entity for the column.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS controlling row-level access.
- Standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) — audit trail.
Common Use Cases and Queries
The most common requirement is to enumerate the columns configured for a specific grid. For example:
SELECT GRID_COL_ALIAS, DB_COL_NAME, DISPLAY_SEQ, VISIBLE_FLAG FROM JTF.GRID_COLS_B WHERE GRID_DATASOURCE_NAME = :ds ORDER BY DISPLAY_SEQ;
Administrators and developers use this to diagnose why a column is missing, misordered, or non-sortable in a CRM or iSupport grid. A second scenario is auditing formatting and validation: joining to JTF_OBJECTS_B via VALIDATION_OBJECT_CODE reveals which validation logic governs a column. A third is reproducing the translatable prompt for a column by joining to JTF_GRID_COLS_TL on GRID_DATASOURCE_NAME and GRID_COL_ALIAS, restricted by LANGUAGE. Reporting queries frequently combine the base table with JTF_CUSTOM_GRID_COLS to distinguish seeded columns from customer-personalized ones, which is valuable during upgrades from 12.1.1 to 12.2.2 when metadata drift must be reconciled.
Related Objects
The table participates in a dense metadata web. The most significant relationships, with join columns, are:
- JTF_GRID_DATASOURCES_B — parent data source; joined on GRID_DATASOURCE_NAME.
- JTF_GRID_COLS_TL — translated prompts; joined on GRID_DATASOURCE_NAME and GRID_COL_ALIAS.
- JTF_OBJECTS_B — validation entity; joined on VALIDATION_OBJECT_CODE.
- FND_SECURITY_GROUPS — security grouping; joined on SECURITY_GROUP_ID.
- JTF_CUSTOM_GRID_COLS — customer column personalizations; joined on GRID_DATASOURCE_NAME and GRID_COL_ALIAS.
- JTF_GRID_SORT_COLS — default sort definitions; joined on GRID_DATASOURCE_NAME and the sort alias columns.
- JTF_CUSTOM_GRIDS — saved grid layouts; joined on GRID_DATASOURCE_NAME and sort alias columns.
Together these objects form the JTF spreadtable metadata model, with JTF_GRID_COLS_B serving as the central definition point for column-level behavior.
-
Table: JTF_GRID_COLS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_COLS_B, object_name:JTF_GRID_COLS_B, status:VALID, product: JTF - CRM Foundation , description: Meta Data information for each column defined for a spreadtable UI component. , implementation_dba_data: JTF.JTF_GRID_COLS_B ,
-
Table: JTF_GRID_COLS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_COLS_B, object_name:JTF_GRID_COLS_B, status:VALID, product: JTF - CRM Foundation , description: Meta Data information for each column defined for a spreadtable UI component. , implementation_dba_data: JTF.JTF_GRID_COLS_B ,
-
Table: JTF_CUSTOM_GRIDS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_CUSTOM_GRIDS, object_name:JTF_CUSTOM_GRIDS, status:VALID, product: JTF - CRM Foundation , description: User named sets of customizations, in Oracle Applications commonly referred to as "Folders" , implementation_dba_data: JTF.JTF_CUSTOM_GRIDS ,
-
Table: JTF_GRID_SORT_COLS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_SORT_COLS, object_name:JTF_GRID_SORT_COLS, status:VALID, product: JTF - CRM Foundation , description: The default columns and priority of the columns for the current set of meta data, used for sorting the data displayed in a spreadtable UI component. , implementation_dba_data: JTF.JTF_GRID_SORT_COLS ,
-
VIEW: JTF.JTF_GRID_COLS_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_GRID_COLS_B#, status:VALID,
-
Table: JTF_CUSTOM_GRIDS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_CUSTOM_GRIDS, object_name:JTF_CUSTOM_GRIDS, status:VALID, product: JTF - CRM Foundation , description: User named sets of customizations, in Oracle Applications commonly referred to as "Folders" , implementation_dba_data: JTF.JTF_CUSTOM_GRIDS ,
-
Table: JTF_GRID_SORT_COLS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_SORT_COLS, object_name:JTF_GRID_SORT_COLS, status:VALID, product: JTF - CRM Foundation , description: The default columns and priority of the columns for the current set of meta data, used for sorting the data displayed in a spreadtable UI component. , implementation_dba_data: JTF.JTF_GRID_SORT_COLS ,
-
Table: JTF_GRID_COLS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_COLS_TL, object_name:JTF_GRID_COLS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_GRID_COLS_B , implementation_dba_data: JTF.JTF_GRID_COLS_TL ,
-
SYNONYM: APPS.JTF_GRID_COLS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_COLS_B, status:VALID,
-
TRIGGER: APPS.JTF_GRID_COLS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_GRID_COLS_B+, status:VALID,
-
Table: JTF_GRID_COLS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_COLS_TL, object_name:JTF_GRID_COLS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_GRID_COLS_B , implementation_dba_data: JTF.JTF_GRID_COLS_TL ,
-
APPS.JTF_GRID_COLS_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.JTF_GRID_COLS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_GRID_COLS_B, status:VALID,
-
APPS.JTF_GRID_COLS_PKG SQL Statements
12.1.1
-
TRIGGER: APPS.JTF_GRID_COLS_B+
12.2.2
-
VIEW: APPS.JTF_GRID_COLS_VL
12.1.1
-
VIEW: APPS.JTF_GRID_COLS_VL
12.2.2
-
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 ,
-
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.JTF_GRID_COLS_B#
12.2.2
-
FUNCTION: APPS.JTF_GRID_COLS_B=
12.2.2
-
FUNCTION: APPS.JTF_GRID_COLS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_GRID_COLS_B=, status:VALID,
-
Table: JTF_GRID_DATASOURCES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_DATASOURCES_B, object_name:JTF_GRID_DATASOURCES_B, status:VALID, product: JTF - CRM Foundation , description: Meta Data definitions that are used to initialize and set up a a spreadtable UI component. , implementation_dba_data: JTF.JTF_GRID_DATASOURCES_B ,
-
Table: JTF_CUSTOM_GRID_COLS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_CUSTOM_GRID_COLS, object_name:JTF_CUSTOM_GRID_COLS, status:VALID, product: JTF - CRM Foundation , description: End user customizations (on a column by column basis) to the visual appearance and sort, filtering criteria for a spreadtable UI component. , implementation_dba_data: JTF.JTF_CUSTOM_GRID_COLS ,
-
Table: JTF_GRID_DATASOURCES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_DATASOURCES_B, object_name:JTF_GRID_DATASOURCES_B, status:VALID, product: JTF - CRM Foundation , description: Meta Data definitions that are used to initialize and set up a a spreadtable UI component. , implementation_dba_data: JTF.JTF_GRID_DATASOURCES_B ,
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRID_COLS_PKG, 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,
-
Table: JTF_CUSTOM_GRID_COLS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_CUSTOM_GRID_COLS, object_name:JTF_CUSTOM_GRID_COLS, status:VALID, product: JTF - CRM Foundation , description: End user customizations (on a column by column basis) to the visual appearance and sort, filtering criteria for a spreadtable UI component. , implementation_dba_data: JTF.JTF_CUSTOM_GRID_COLS ,
-
APPS.JTF_GRIDDB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JTF_GRID_DATASOURCES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRID_DATASOURCES_PKG, 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,
-
APPS.JTF_GRIDDB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.2.2
-
PACKAGE BODY: APPS.JTF_GRIDDB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_GRIDDB, 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.WMS_WAVEPLAN_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WAVEPLAN_TASKS_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_GRID_COLS_PKG
12.1.1
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WAVEPLAN_TASKS_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: JTF_OBJECTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID, product: JTF - CRM Foundation , description: This table stores the details of objects(modules). , implementation_dba_data: JTF.JTF_OBJECTS_B ,
-
Table: JTF_OBJECTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID, product: JTF - CRM Foundation , description: This table stores the details of objects(modules). , implementation_dba_data: JTF.JTF_OBJECTS_B ,
-
TABLE: JTF.JTF_GRID_COLS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_COLS_B, object_name:JTF_GRID_COLS_B, status:VALID,
-
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,
-
TABLE: JTF.JTF_GRID_COLS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_GRID_COLS_B, object_name:JTF_GRID_COLS_B, 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,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1