Search Results ece_spso_headers




Overview

ECE_SPSO_HEADERS is an e-Commerce Gateway (EC) schema table that stores supplier schedule header data used to support outbound Planning Schedule (830/DELFOR) and Shipping Schedule (862/DELJIT) transactions in Oracle E-Business Suite 12.1.1 and 12.2.2. The table resides in the EC schema and is classified as VALID in the ETRM repository. It serves as the staging and generation repository for supplier scheduling data exchanged with trading partners through the e-Commerce Gateway, capturing both the transactional schedule information and the trading partner, ship-to organization, and supplier site context required to build ANSI X12 or EDIFACT outbound messages.

From a Data Vault modeling perspective, the mined foreign-key structure classifies this object heuristically as a standalone entity. The metadata does not surface parent-child FK relationships to other tables, so ECE_SPSO_HEADERS is best modeled as a hub-like structure carrying its own descriptive attributes, rather than as a link or satellite dependent on another ECE object. Its 179 documented columns indicate a wide, denormalized staging surface rather than a normalized transactional core.

Key Information Stored

The physical primary key is defined by the constraint ECE_SPSO_HEADERS_PK over the composite columns SCHEDULE_ID and RUN_ID. A unique index, ECE_SPSO_HEADERS_U1, mirrors the same two columns, making (SCHEDULE_ID, RUN_ID) the documented business-key candidate as well. SCHEDULE_ID identifies the logical schedule instance, while RUN_ID ties the record to a specific concurrent program execution that generated it.

Common Use Cases and Queries

Typical uses center on auditing and troubleshooting outbound supplier schedules generated by e-Commerce Gateway concurrent programs. Analysts frequently join header rows to detail tables to reconstruct the transmission, or query by trading partner and date range to confirm delivery of an 830 or 862 message.

  • Identify the most recent run per schedule: SELECT SCHEDULE_ID, MAX(RUN_ID) FROM EC.ECE_SPSO_HEADERS GROUP BY SCHEDULE_ID;
  • List all headers for a trading partner: SELECT * FROM EC.ECE_SPSO_HEADERS WHERE TP_LOCATION_CODE_EXT = :tp;
  • Reconcile generation output by REQUEST_ID to the concurrent request log.
  • Report forecast horizon coverage using FORECAST_HORIZON_START_DATE and FORECAST_HORIZON_END_DATE.
  • Filter test transmissions via TEST_FLAG = 'Y'.

Related Objects

The supplied metadata documents no FK parents, so relationships are typically established through shared keys and ECE sibling tables rather than enforced constraints.