Search Results ece_stage
Overview
ECE_STAGE is the inbound staging table for Oracle E-Business Suite's e-Commerce Gateway (EC) module. It serves as the transient landing zone where inbound electronic documents — purchase orders, invoices, ship notices, and similar transactions received from external trading partners — are loaded, validated, and staged before the gateway's processing programs translate them into native EBS application tables. Because this table operates within the EC schema and carries the prefix ECE, it is tightly bound to the e-Commerce Gateway architecture rather than to any single transactional module. In Oracle EBS 12.1.1 and 12.2.2, ECE_STAGE is documented as VALID under owner EC and is classified heuristically as a standalone structure within the Data Vault model — that is, neither a hub, link, nor satellite. Treated as a modeling suggestion, this classification implies the table functions as an integration or transient object rather than a core reference entity, and it participates in few permanent relationships.
Key Information Stored
ECE_STAGE spans 519 documented columns, the great majority of which are a very wide, generic FIELD1 through FIELD500 block. This design allows the gateway to bind positional columns from flat-file or EDI inbound extracts into fixed column slots without requiring schema changes per transaction type. The most important columns are:
- STAGE_ID — the surrogate primary key (index ECE_STAGE_PK) and the unique business-key candidate (index ECE_STAGE_U1). This is the join column referenced by all downstream tables.
- DOCUMENT_ID — identifier associating the staged row with the inbound document instance.
- TRANSACTION_TYPE and TRANSACTION_LEVEL — define the kind of transaction and its hierarchical placement (header, line, detail).
- LINE_NUMBER and PARENT_STAGE_ID — support the parent/child structure of document lines, allowing line-level rows to reference their header via PARENT_STAGE_ID.
- RUN_ID — identifies the gateway processing run that created or consumed the staged data.
- DOCUMENT_NUMBER — the externally supplied document reference number.
- STATUS — processing status used to track validation and translation progress.
- TP_CODE and MAP_ID — the trading-partner code and mapping definition applied to the inbound data.
- FIELD1 … FIELD500 — generic positional staging columns holding raw inbound values.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard EBS concurrent and audit columns.
Common Use Cases and Queries
Support specialists typically query ECE_STAGE to diagnose failed or stalled inbound interfaces — rows whose STATUS never advances indicate mapping or validation failures. A common pattern retrieves header rows for a given trading partner:
SELECT STAGE_ID, DOCUMENT_NUMBER, TRANSACTION_TYPE, STATUS FROM ECE_STAGE WHERE TP_CODE = :tp AND RUN_ID = :run ORDER BY STAGE_ID;- Hierarchy reconstruction:
SELECT c.STAGE_ID, c.LINE_NUMBER FROM ECE_STAGE c WHERE c.PARENT_STAGE_ID = :stage_id; - Status monitoring and purge reporting for housekeeping concurrent programs.
Because FIELD1 through FIELD500 are generic, reporting against them requires the active mapping definition (MAP_ID) to interpret which field maps to which business attribute.
Related Objects
Although ECE_STAGE is heuristic-standalone, several tables reference its STAGE_ID key, forming the practical dependency graph:
- ECE_RULE_VIOLATIONS.STAGE_ID — records validation-rule failures for staged rows.
- BIS_RS_STAGE_RUN_HISTORY.STAGE_ID — tracks stage run history for the BIS reporting layer.
- PSB_WORKSHEETS_I.STAGE_ID — links staged data to Public Sector Budgeting worksheets.
- BIC_LC_SETUP_ALL.STAGE_ID — references staging configuration.
- AHL_VISIT_TASKS_B.STAGE_ID — associates staged content with visit task records.
The primary inbound processing is driven by e-Commerce Gateway concurrent programs operating in schema EC, which read ECE_STAGE, apply the MAP_ID mapping, and write translated results to the target application interface tables.
-
Table: ECE_STAGE
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_STAGE, object_name:ECE_STAGE, status:VALID, product: EC - e-Commerce Gateway , description: Inbound staging table. , implementation_dba_data: EC.ECE_STAGE ,
-
Table: ECE_STAGE
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_STAGE, object_name:ECE_STAGE, status:VALID, product: EC - e-Commerce Gateway , description: Inbound staging table. , implementation_dba_data: EC.ECE_STAGE ,
-
VIEW: APPS.ECE_STAGE_LEVEL1_V
12.1.1
-
VIEW: APPS.ECE_STAGE_LEVEL2_V
12.2.2
-
VIEW: APPS.ECE_STAGE_LEVEL1_V
12.2.2
-
VIEW: APPS.ECE_STAGE_LEVEL2_V
12.1.1
-
SYNONYM: APPS.ECE_STAGE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ECE_STAGE, status:VALID,
-
APPS.EC_OUTBOUND SQL Statements
12.1.1
-
APPS.EC_OUTBOUND SQL Statements
12.2.2
-
SYNONYM: APPS.ECE_STAGE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ECE_STAGE, status:VALID,
-
APPS.ECE_INBOUND SQL Statements
12.2.2
-
APPS.ECE_INBOUND SQL Statements
12.1.1
-
View: ECE_STAGE_LEVEL2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL2_V, object_name:ECE_STAGE_LEVEL2_V, status:VALID, product: EC - e-Commerce Gateway , description: ECE_STAGE_LEVEL2_V is used in ECERNCON.fmb to retrieve , implementation_dba_data: APPS.ECE_STAGE_LEVEL2_V ,
-
View: ECE_STAGE_LEVEL1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL1_V, object_name:ECE_STAGE_LEVEL1_V, status:VALID, product: EC - e-Commerce Gateway , description: ECE_STAGE_LEVEL1_V is used in ECERNCON.fmb to retrieve the , implementation_dba_data: APPS.ECE_STAGE_LEVEL1_V ,
-
View: ECE_STAGE_LEVEL1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL1_V, object_name:ECE_STAGE_LEVEL1_V, status:VALID, product: EC - e-Commerce Gateway , description: ECE_STAGE_LEVEL1_V is used in ECERNCON.fmb to retrieve the , implementation_dba_data: APPS.ECE_STAGE_LEVEL1_V ,
-
View: ECE_STAGE_LEVEL2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL2_V, object_name:ECE_STAGE_LEVEL2_V, status:VALID, product: EC - e-Commerce Gateway , description: ECE_STAGE_LEVEL2_V is used in ECERNCON.fmb to retrieve , implementation_dba_data: APPS.ECE_STAGE_LEVEL2_V ,
-
PACKAGE BODY: APPS.EC_MAPPING_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EC_MAPPING_UTILS, status:VALID,
-
PACKAGE BODY: APPS.EC_OUTBOUND
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EC_OUTBOUND, status:VALID,
-
PACKAGE BODY: APPS.EC_OUTBOUND_STAGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EC_OUTBOUND_STAGE, status:VALID,
-
VIEW: APPS.ECE_STAGE_LEVEL1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL1_V, object_name:ECE_STAGE_LEVEL1_V, status:VALID,
-
PACKAGE BODY: APPS.EC_OUTBOUND
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EC_OUTBOUND, status:VALID,
-
PACKAGE: APPS.ECE_INBOUND
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ECE_INBOUND, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.ECE_RULES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ECE_RULES_PKG, status:VALID,
-
PACKAGE BODY: APPS.EC_MAPPING_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EC_MAPPING_UTILS, status:VALID,
-
VIEW: APPS.ECE_STAGE_LEVEL1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL1_V, object_name:ECE_STAGE_LEVEL1_V, status:VALID,
-
PACKAGE BODY: APPS.EC_OUTBOUND_STAGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EC_OUTBOUND_STAGE, status:VALID,
-
PACKAGE: APPS.ECE_INBOUND
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ECE_INBOUND, status:VALID,
-
VIEW: APPS.ECE_STAGE_LEVEL2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL2_V, object_name:ECE_STAGE_LEVEL2_V, status:VALID,
-
PACKAGE BODY: APPS.ECE_INBOUND
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ECE_INBOUND, status:VALID,
-
PACKAGE BODY: APPS.ECE_INBOUND
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ECE_INBOUND, status:VALID,
-
PACKAGE BODY: APPS.ECE_RULES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ECE_RULES_PKG, status:VALID,
-
PACKAGE: APPS.EC_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EC_UTILS, status:VALID,
-
PACKAGE: APPS.EC_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:EC_UTILS, status:VALID,
-
VIEW: APPS.ECE_STAGE_LEVEL2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_STAGE_LEVEL2_V, object_name:ECE_STAGE_LEVEL2_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.EC_OUTBOUND
12.1.1
-
PACKAGE BODY: APPS.EC_OUTBOUND
12.2.2
-
PACKAGE BODY: APPS.ECE_INBOUND
12.1.1
-
PACKAGE BODY: APPS.ECE_INBOUND
12.2.2
-
VIEW: EC.ECE_STAGE#
12.2.2
owner:EC, object_type:VIEW, object_name:ECE_STAGE#, status:VALID,
-
APPS.EC_OUTBOUND_STAGE SQL Statements
12.1.1
-
VIEW: EC.ECE_STAGE#
12.2.2
-
APPS.EC_INBOUND_STAGE SQL Statements
12.1.1
-
APPS.EC_INBOUND_STAGE SQL Statements
12.2.2
-
APPS.EC_OUTBOUND_STAGE SQL Statements
12.2.2
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,