Search Results interface_table_name
Overview
GCS_GL_JI_GROUPS_V is an Oracle EBS view owned by the APPS schema and defined over the General Ledger interface tables. Its purpose is to present a consolidated, de-duplicated list of journal import "groups" that are available for processing, together with the interface table from which each group originates. In Oracle EBS 12.1.1 and 12.2.2, the Journal Import program consumes rows keyed by GROUP_ID; this view allows callers, concurrent programs, and reports to enumerate the distinct group identifiers and the associated journal source, ledger, and request context without scanning the full interface tables directly.
The name carries the "GCS" prefix, indicating the view is associated with the Global Consolidation System (GCS), which relies on journal import interfaces to move consolidation and intercompany data between ledgers. The presence of the INTERFACE_TABLE_NAME column makes the view particularly relevant to users searching for "interface_table_name," since it explicitly exposes which staging table a given group belongs to.
Underlying Base Objects
The ETRM metadata documents the view as a UNION of two SELECT statements drawn from three base tables:
- GL_INTERFACE — the primary journal import staging table, contributing the first branch of the UNION.
- GL_INTERFACE_CONTROL — the interface control table, joined to GL_JE_SOURCES in the second branch.
- GL_JE_SOURCES — the journal source definitions, supplying USER_JE_SOURCE_NAME.
The first branch selects group_id from GL_INTERFACE where GROUP_ID IS NOT NULL and emits a literal NULL for INTERFACE_TABLE_NAME. The second branch selects from GL_INTERFACE_CONTROL joined to GL_JE_SOURCES on JE_SOURCE_NAME, applying the condition NVL(UPPER(INTERFACE_TABLE_NAME),'GL_INTERFACE') <> 'GL_INTERFACE'. This deliberately excludes rows that default to the standard GL_INTERFACE, so the control-table branch only surfaces groups routed through a non-default interface table. The two branches are combined with UNION (not UNION ALL), eliminating duplicates, and ordered by the first column (GROUP_ID).
Key Columns
- GROUP_ID — the journal import grouping key used to link interface rows into a single import run. This is the ordering and correlation column.
- INTERFACE_TABLE_NAME — the name (upper-cased) of the interface table associated with the group. It is NULL for groups sourced purely from GL_INTERFACE and populated for groups routed through an alternate interface table.
- USER_JE_SOURCE_NAME — the user-facing journal source name resolved from GL_JE_SOURCES.
- SET_OF_BOOKS_ID — the ledger (set of books) identifier to which the group belongs.
- REQUEST_ID — the concurrent request that created or is associated with the interface group.
Common Use Cases and Queries
Typical usage includes enumerating importable groups prior to invoking Journal Import, identifying the source table for diagnostics, and reporting on interface activity by ledger or source. A representative query:
SELECT group_id, interface_table_name, user_je_source_name, set_of_books_id, request_id FROM apps.gcs_gl_ji_groups_v WHERE set_of_books_id = :ledger ORDER BY group_id;SELECT group_id, interface_table_name FROM apps.gcs_gl_ji_groups_v WHERE interface_table_name IS NOT NULL;— isolates groups routed through a non-default interface table.SELECT DISTINCT request_id, group_id FROM apps.gcs_gl_ji_groups_v WHERE user_je_source_name = :source;
Because the metadata documents no base objects beyond the three interface and source tables, all reported values derive directly from GL_INTERFACE, GL_INTERFACE_CONTROL, and GL_JE_SOURCES.
-
VIEW: APPS.GCS_GL_JI_GROUPS_V
12.1.1
-
View: GCS_GL_JI_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_GL_JI_GROUPS_V, object_name:GCS_GL_JI_GROUPS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: GL_INTERFACE source and group id information. , implementation_dba_data: APPS.GCS_GL_JI_GROUPS_V ,
-
View: GCS_GL_JI_GROUPS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: GL_INTERFACE source and group id information. , implementation_dba_data: Not implemented in this database ,
-
VIEW: GL.GL_INTERFACE_CONTROL#
12.2.2
-
VIEW: GL.GL_XFR_TRACKING#
12.2.2
-
APPS.HZ_IMP_LOAD_WRAPPER SQL Statements
12.2.2
-
APPS.HZ_IMP_LOAD_WRAPPER SQL Statements
12.1.1
-
VIEW: EC.ECE_INTERFACE_TBLS_UPG#
12.2.2
-
VIEW: EC.ECE_INTERFACE_TABLES#
12.2.2
-
VIEW: WSH.WSH_INTERFACE_ERRORS#
12.2.2
-
VIEW: AR.HZ_IMP_ERRORS#
12.2.2
-
VIEW: AR.HZ_IMP_TMP_ERRORS#
12.2.2
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_WRAPPER
12.2.2
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_WRAPPER
12.1.1
-
VIEW: GL.GL_INTERFACE_CONTROL#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_INTERFACE_CONTROL#, status:VALID,
-
TABLE: FEM.FEM_WEBADI_TABLE_COLS_MAPS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_WEBADI_TABLE_COLS_MAPS, status:VALID,
-
VIEW: APPS.GL_SRS_JI_REQUESTS_V
12.1.1
-
VIEW: APPS.GL_SRS_JI_REQUESTS_V
12.2.2
-
VIEW: WSH.WSH_INTERFACE_ERRORS#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_INTERFACE_ERRORS#, status:VALID,
-
TABLE: FEM.FEM_TAB_LOADER_DEFAULTS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TAB_LOADER_DEFAULTS, status:VALID,
-
VIEW: GL.GL_XFR_TRACKING#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_XFR_TRACKING#, status:VALID,
-
VIEW: EC.ECE_INTERFACE_TABLES#
12.2.2
owner:EC, object_type:VIEW, object_name:ECE_INTERFACE_TABLES#, status:VALID,
-
VIEW: EC.ECE_INTERFACE_TBLS_UPG#
12.2.2
owner:EC, object_type:VIEW, object_name:ECE_INTERFACE_TBLS_UPG#, status:VALID,
-
VIEW: AR.HZ_IMP_ERRORS#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_IMP_ERRORS#, status:VALID,
-
VIEW: APPS.GCS_GL_JI_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_GL_JI_GROUPS_V, object_name:GCS_GL_JI_GROUPS_V, status:VALID,
-
TABLE: AR.HZ_IMP_ERRORS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_ERRORS, object_name:HZ_IMP_ERRORS, status:VALID,
-
TABLE: AR.HZ_IMP_ERRORS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_ERRORS, object_name:HZ_IMP_ERRORS, status:VALID,
-
VIEW: APPS.GL_SRS_DEL_JI_GROUPS_V
12.2.2
-
VIEW: APPS.GL_SRS_JI_GROUPS_V
12.1.1
-
VIEW: APPS.GL_SRS_JI_GROUPS_V
12.2.2
-
TABLE: WSH.WSH_INTERFACE_ERRORS
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_INTERFACE_ERRORS, object_name:WSH_INTERFACE_ERRORS, status:VALID,
-
VIEW: APPS.GL_SRS_DEL_JI_GROUPS_V
12.1.1
-
TABLE: EC.ECE_INTERFACE_TBLS_UPG
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_INTERFACE_TBLS_UPG, object_name:ECE_INTERFACE_TBLS_UPG, status:VALID,
-
TABLE: EC.ECE_INTERFACE_TBLS_UPG
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_INTERFACE_TBLS_UPG, object_name:ECE_INTERFACE_TBLS_UPG, status:VALID,
-
TABLE: GL.GL_INTERFACE_CONTROL
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_INTERFACE_CONTROL, object_name:GL_INTERFACE_CONTROL, status:VALID,
-
TABLE: BIS.EDW_SOURCE_VIEWS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_SOURCE_VIEWS, object_name:EDW_SOURCE_VIEWS, status:VALID,
-
TABLE: GL.GL_INTERFACE_CONTROL
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_INTERFACE_CONTROL, object_name:GL_INTERFACE_CONTROL, status:VALID,
-
TABLE: WSH.WSH_INTERFACE_ERRORS
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_INTERFACE_ERRORS, object_name:WSH_INTERFACE_ERRORS, status:VALID,
-
TABLE: GL.GL_XFR_TRACKING
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_XFR_TRACKING, object_name:GL_XFR_TRACKING, status:VALID,
-
TABLE: FEM.FEM_TABLES_B
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TABLES_B, status:VALID,
-
VIEW: APPS.FEM_TABLES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_TABLES_V, status:VALID,
-
APPS.GL_JOURNAL_IMPORT_PKG SQL Statements
12.2.2
-
View: GL_SRS_JI_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SRS_JI_REQUESTS_V, object_name:GL_SRS_JI_REQUESTS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_SRS_JI_REQUESTS_V ,
-
View: GL_SRS_JI_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SRS_JI_REQUESTS_V, object_name:GL_SRS_JI_REQUESTS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_SRS_JI_REQUESTS_V ,
-
VIEW: AR.HZ_IMP_TMP_ERRORS#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_IMP_TMP_ERRORS#, status:VALID,
-
APPS.GL_JOURNAL_IMPORT_PKG SQL Statements
12.1.1
-
APPS.WSH_INTERFACE_VALIDATIONS_PKG SQL Statements
12.2.2
-
APPS.FEM_TABLES_PKG SQL Statements
12.1.1
-
VIEW: APPS.FEM_TABLES_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_TABLES_VL, status:VALID,
-
View: GL_SRS_JI_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SRS_JI_GROUPS_V, object_name:GL_SRS_JI_GROUPS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_SRS_JI_GROUPS_V ,