Search Results rlm_interface_headers_all




Overview

RLM_INTERFACE_HEADERS_ALL is a Release Management (RLM) interface table in the Oracle E-Business Suite, owned by the RLM schema. It serves as the staging and header-level repository for release schedule information, capturing demand transactions delivered by the EDI Gateway from external trading partners. In Oracle EBS 12.1.1 and 12.2.2, this table holds 152 documented columns and stores schedule-level details together with customer, supplier, and trading-partner information required for downstream release management processing.

The table is populated as part of the EDI inbound flow, where demand signals such as planning schedules and release schedules are received and staged prior to validation and consumption by RLM schedule processing concurrent programs. From a dimensional modeling perspective, the metadata classifies this object heuristically as a standalone structure — neither a classic hub, link, nor satellite — since its foreign key footprint is minimal, with only a single documented reference to AR_CHARGE_SCHEDULE_HDRS. This classification should be treated as a modeling suggestion rather than a prescribed Data Vault construct.

Key Information Stored

Each row represents a single schedule header. The documented surrogate primary key is HEADER_ID, enforced by the unique index HEADER_ID_PK and the business-key candidate index RLM_HEADERS_INTERFACE_U1. The most significant columns include:

Common Use Cases and Queries

Typical use cases include monitoring inbound EDI demand and validating staged release schedules before RLM processing. A common query examines the processing backlog by status and operating unit:

  • SELECT HEADER_ID, CUSTOMER_ID, SCHEDULE_TYPE, PROCESS_STATUS, ORG_ID FROM RLM_INTERFACE_HEADERS_ALL WHERE PROCESS_STATUS = 'PENDING';

To reconcile interface rows against their originating charge schedule header, join on SCHEDULE_HEADER_ID:

  • SELECT h.HEADER_ID, h.SCHEDULE_HEADER_ID, a.* FROM RLM_INTERFACE_HEADERS_ALL h JOIN AR_CHARGE_SCHEDULE_HDRS a ON h.SCHEDULE_HEADER_ID = a.SCHEDULE_HEADER_ID;

Reporting scenarios frequently extract schedule horizons and customer/supplier combinations for on-time delivery or forecast analysis, filtering by SCHED_GENERATION_DATE, SCHED_HORIZON_START_DATE, and SCHED_HORIZON_END_DATE. Because the table carries both CUSTOMER_ID and SUPPLIER_ID, it also supports trading-partner activity reporting across demand and supply relationships.

Related Objects

The most significant objects associated with this table include:

  • AR_CHARGE_SCHEDULE_HDRS — referenced via SCHEDULE_HEADER_ID; the charge schedule header behind each interface row.
  • RLM_INTERFACE_LINES_ALL — companion line-level interface table (typical header/line pairing in RLM staging).
  • RLM_SCHEDULE_HEADERS — destination schedule header holding processed schedule data.
  • RLM_SCHEDULE_LINES — schedule line detail consumed from the line interface.
  • HZ_CUST_ACCOUNTS — customer master referenced by CUSTOMER_ID for validation and enrichment.
  • PO_VENDORS / HZ_PARTIES — supplier master referenced by SUPPLIER_ID.
  • HR_ALL_OPERATING_UNITS — operating unit behind ORG_ID.
  • EDI Gateway inbound/outbound programs — the process interface that populates this staging table.
  • Table: RLM_INTERFACE_HEADERS_ALL 12.2.2

    owner:RLM,  object_type:TABLE,  fnd_design_data:RLM.RLM_INTERFACE_HEADERS_ALL,  object_name:RLM_INTERFACE_HEADERS_ALL,  status:VALID,  product: RLM - Release Managementdescription: This table stores the header level details of the Release Management schedules. It has details pertainig to the specific schedule and customer level information. EDI Gateway will feed into this table for the demand transactions of Planning, ,  implementation_dba_data: RLM.RLM_INTERFACE_HEADERS_ALL

  • Table: RLM_INTERFACE_HEADERS_ALL 12.1.1

    owner:RLM,  object_type:TABLE,  fnd_design_data:RLM.RLM_INTERFACE_HEADERS_ALL,  object_name:RLM_INTERFACE_HEADERS_ALL,  status:VALID,  product: RLM - Release Managementdescription: This table stores the header level details of the Release Management schedules. It has details pertainig to the specific schedule and customer level information. EDI Gateway will feed into this table for the demand transactions of Planning, ,  implementation_dba_data: RLM.RLM_INTERFACE_HEADERS_ALL