Search Results all_ind_columns
Overview
FND_INDEXED_SEGS_V is an APPS-owned database view in Oracle E-Business Suite, documented in ETRM for releases 12.1.1 and 12.2.2. The view exists to answer a narrow but important metadata question: which segments of the GL Accounting Flexfield (ID_FLEX_CODE = 'GL#') are physically indexed as the leading column of an index on the GL_CODE_COMBINATIONS table. Because the Accounting Flexfield is the backbone of the General Ledger chart of accounts, performance of queries and integrations that filter on a single balancing or cost center segment depends heavily on whether that segment is indexed. This view exposes that fact declaratively, allowing reporting, diagnostics, and validation logic to identify indexed segments without hard-coding index definitions. It is a metadata/configuration view rather than a transactional one; it returns a small, slowly changing result set reflecting the intersection of Flexfield segment definitions and physical index columns.
Underlying Base Objects
The view is defined over two referenced base objects, both resolved through synonyms in the APPS schema:
- FND_ID_FLEX_SEGMENTS — the segment definition table, aliased SEG. This supplies SEGMENT_NAME, APPLICATION_COLUMN_NAME, and ID_FLEX_NUM, and is filtered by ENABLED_FLAG = 'Y', ID_FLEX_CODE = 'GL#', and APPLICATION_ID = 101 (the General Ledger application).
- ALL_IND_COLUMNS — the data dictionary view of index columns, aliased COLS. It is correlated in an EXISTS subquery matching SEG.APPLICATION_COLUMN_NAME to COLS.COLUMN_NAME, with COLUMN_POSITION = 1 and TABLE_NAME = 'GL_CODE_COMBINATIONS'.
The correlation restricts the result to enabled GL segments whose column occupies the first position of an index on GL_CODE_COMBINATIONS. This is the documented linkage the user implicitly sought when searching for "all_ind_columns"; that dictionary view is the second half of the join that makes this view meaningful.
Key Columns
- SEGMENT_NAME — the name of the Accounting Flexfield segment (for example, Company, Cost Center, Account), sourced from FND_ID_FLEX_SEGMENTS.
- APPLICATION_COLUMN_NAME — the underlying GL_CODE_COMBINATIONS column name that stores the segment value; this is the column matched against ALL_IND_COLUMNS.COLUMN_NAME.
- ID_FLEX_NUM — the numeric identifier of the flexfield definition, useful for joining back to key flexfield metadata such as FND_ID_FLEXS and FND_ID_FLEX_STRUCTURES.
The view does not expose index name, uniqueness, or column ordering beyond the implicit position-one constraint, so consumers requiring index names must query ALL_IND_COLUMNS or ALL_INDEXES directly.
Common Use Cases and Queries
Typical uses include performance diagnostics, indexing gap analysis, and validation of chart-of-accounts design. A simple listing follows:
- SELECT SEGMENT_NAME, APPLICATION_COLUMN_NAME, ID_FLEX_NUM FROM APPS.FND_INDEXED_SEGS_V;
- Join to segment metadata to report attributes of indexed segments, e.g. SELECT v.SEGMENT_NAME, s.FLEX_VALUE_SET_ID FROM APPS.FND_INDEXED_SEGS_V v, APPS.FND_ID_FLEX_SEGMENTS s WHERE v.APPLICATION_COLUMN_NAME = s.APPLICATION_COLUMN_NAME AND s.ID_FLEX_CODE = 'GL#'.
- Compare against all enabled GL segments to identify unindexed segments that may cause full-table scans on GL_CODE_COMBINATIONS.
Because the view is a metadata join, it is read-only, safe for concurrent querying, and requires no special initialization beyond access to the APPS synonyms. Results should be interpreted per the active GL chart of accounts and the physical indexes actually present in the database.
-
VIEW: APPS.FND_INDEXED_SEGS_V
12.1.1
-
VIEW: APPS.FND_INDEXED_SEGS_V
12.2.2
-
SYNONYM: PUBLIC.ALL_IND_COLUMNS
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:ALL_IND_COLUMNS, status:VALID,
-
SYNONYM: PUBLIC.ALL_IND_COLUMNS
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:ALL_IND_COLUMNS, status:VALID,
-
VIEW: SYS.ALL_IND_COLUMNS
12.1.1
owner:SYS, object_type:VIEW, object_name:ALL_IND_COLUMNS, status:VALID,
-
VIEW: SYS.ALL_IND_COLUMNS
12.2.2
owner:SYS, object_type:VIEW, object_name:ALL_IND_COLUMNS, status:VALID,
-
APPS.GL_BEST_IND_VALUE SQL Statements
12.1.1
-
APPS.GL_BEST_IND_VALUE SQL Statements
12.2.2
-
View: FND_INDEXED_SEGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_INDEXED_SEGS_V, object_name:FND_INDEXED_SEGS_V, status:VALID, product: FND - Application Object Library , description: Indexed columns in the GL_CODE_COMBINATIONS table , implementation_dba_data: APPS.FND_INDEXED_SEGS_V ,
-
PACKAGE BODY: APPS.GL_BEST_IND_VALUE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_BEST_IND_VALUE, status:VALID,
-
APPS.FND_XDF_UTIL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_WEB_ADI_LOADER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_WEB_ADI_LOADER_PKG, status:VALID,
-
PACKAGE BODY: APPS.HRI_UTL_DDL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HRI_UTL_DDL, status:VALID,
-
View: FND_INDEXED_SEGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_INDEXED_SEGS_V, object_name:FND_INDEXED_SEGS_V, status:VALID, product: FND - Application Object Library , description: Indexed columns in the GL_CODE_COMBINATIONS table , implementation_dba_data: APPS.FND_INDEXED_SEGS_V ,
-
APPS.FND_XDF_UTIL_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GL_BEST_IND_VALUE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_BEST_IND_VALUE, status:VALID,
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_ITMHLCHK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_DIAGUNITTEST_ITMHLCHK, status:VALID,
-
PACKAGE BODY: APPS.DT_CHECKINT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:DT_CHECKINT, status:VALID,
-
PACKAGE BODY: APPS.DT_CHECKINT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:DT_CHECKINT, status:VALID,
-
PACKAGE BODY: APPS.FND_XDF_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_XDF_UTIL_PKG, status:VALID,
-
APPS.EDW_ALTER_INDEXES SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FND_XDF_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_XDF_UTIL_PKG, status:VALID,
-
FUNCTION: MDSYS.SDO_JOIN
12.1.1
owner:MDSYS, object_type:FUNCTION, object_name:SDO_JOIN, status:VALID,
-
FUNCTION: MDSYS.SDO_JOIN
12.2.2
owner:MDSYS, object_type:FUNCTION, object_name:SDO_JOIN, status:VALID,
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_ITMHLCHK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_DIAGUNITTEST_ITMHLCHK, status:VALID,
-
PACKAGE BODY: APPS.MSC_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_UTIL, status:VALID,
-
PACKAGE BODY: APPS.BIM_UTL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_UTL_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIM_UTL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_UTL_PKG, status:VALID,
-
PACKAGE BODY: APPS.MSC_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_UTIL, status:VALID,
-
APPS.FEM_ADMIN_UTIL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ZX_TAXWARE_TAX_SERVICE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ZX_TAXWARE_TAX_SERVICE_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIM_EVENT_FACTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_EVENT_FACTS, status:VALID,
-
PACKAGE BODY: APPS.MSC_CL_EXCHANGE_PARTTBL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CL_EXCHANGE_PARTTBL, status:VALID,
-
PACKAGE BODY: APPS.BIM_CAMPAIGN_FACTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_CAMPAIGN_FACTS, status:VALID,
-
PACKAGE BODY: SYS.DMP_SEC
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:DMP_SEC, status:VALID,
-
PACKAGE BODY: SYS.PRVT_COMPRESSION
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:PRVT_COMPRESSION, status:VALID,
-
PACKAGE BODY: SYS.PRVT_COMPRESSION
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:PRVT_COMPRESSION, status:VALID,
-
PACKAGE BODY: SYS.DMP_SEC
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:DMP_SEC, status:VALID,
-
PACKAGE BODY: APPS.BIM_FUND_FACTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_FUND_FACTS, status:VALID,
-
PACKAGE BODY: APPS.ZX_TAXWARE_TAX_SERVICE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ZX_TAXWARE_TAX_SERVICE_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIM_CAMPAIGN_FACTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_CAMPAIGN_FACTS, status:VALID,
-
VIEW: APPS.FND_INDEXED_SEGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_INDEXED_SEGS_V, object_name:FND_INDEXED_SEGS_V, status:VALID,
-
PACKAGE BODY: XDB.DBMS_XMLSTORAGE_MANAGE
12.1.1
owner:XDB, object_type:PACKAGE BODY, object_name:DBMS_XMLSTORAGE_MANAGE, status:VALID,
-
PACKAGE BODY: APPS.FEM_DATAX_LOADER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FEM_DATAX_LOADER_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIM_EVENT_FACTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_EVENT_FACTS, status:VALID,
-
PACKAGE BODY: SYS.DBMS_COMPARISON
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:DBMS_COMPARISON, status:VALID,
-
PACKAGE BODY: APPS.FEM_ADMIN_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FEM_ADMIN_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIM_FUND_FACTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_FUND_FACTS, status:VALID,
-
PACKAGE BODY: APPS.MSC_CL_EXCHANGE_PARTTBL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CL_EXCHANGE_PARTTBL, status:VALID,
-
VIEW: APPS.FND_INDEXED_SEGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_INDEXED_SEGS_V, object_name:FND_INDEXED_SEGS_V, status:VALID,