Search Results sched_horizon_end_date
Overview
RLX_INTERFACE_HEADERS_V is a Release Management (RLM) view within Oracle E-Business Suite, defined as a header-level extraction view for interface processing. It consolidates supplier scheduling data drawn from Advanced Supply Chain Planning (ASCP) plan definitions and cross-reference records, and projects that data into a normalized header structure intended for downstream interface consumption. The view presents a distinct set of planning and scheduling attributes — including schedule reference numbers, scheduling horizons, customer and supplier identity fields, and attribute-value placeholders — and is therefore best understood as a data transformation layer rather than a transactional entity. In the ETRM metadata for 12.2.2, the object is documented but explicitly noted as "Not implemented in this database," meaning it exists as a shipped definition rather than a populated runtime object in the reference environment. The presence of literal constants in the SELECT list (such as 'SCHSTART', 'SCHEND', and 'Y') indicates that the view was designed to satisfy a fixed interface format rather than to serve as a general-purpose reporting source.
Underlying Base Objects
The view is defined over five base objects, all of which participate in an inner join through the WHERE clause. MSC_PLANS supplies the plan header, including PLAN_ID, COMPILE_DESIGNATOR, PLAN_START_DATE, CUTOFF_DATE, PLAN_TYPE, and SR_INSTANCE_ID. MSC_SUP_DEM_ENTRIES provides the supplier and publisher organization identifiers and links to the plan through both PLAN_ID and SR_INSTANCE_ID. HZ_PARTIES resolves the publisher organization to a party name for the customer name column. ECT_XREF_DTL supplies the supplier name through XREF_EXT_VALUE and enforces an outbound direction filter (DIRECTION = 'OUT'). POM_OPERATOR_PARAMETERS is referenced in the FROM clause; the documented join conditions do not constrain it, so it functions as a supporting reference in the original definition. Critically, the plan type is restricted to 4, which limits the view to a specific class of planning records and explains the narrow, interface-specific projection.
Key Columns
- HEADER_ID — aliased from MP.PLAN_ID; the unique header identifier for each interface record.
- SCHEDULE_REFERENCE_NUM — derived from COMPILE_DESIGNATOR; carries the plan's compile designator as the schedule reference.
- SCHED_HORIZON_START_DATE and SCHED_HORIZON_END_DATE — mapped from PLAN_START_DATE and CUTOFF_DATE respectively. The latter is directly relevant to the searched term "sched_horizon_end_date," establishing the schedule cutoff boundary.
- SCHSTART_ATTVALUE and SCHEND_ATTVALUE — literal tags
'SCHSTART'and'SCHEND'used by the consuming interface to identify the horizon attributes. - SCHEDULE_PURPOSE, ACK_REQUEST, SCHED_GENERATION_DATE, DOCUMENT_ATTVALUE, CREATION_ATTVALUE — constants and SYSDATE values that flag the record as an add-purpose, acknowledgement-required generation document.
- CUSTOMER_NAME, CUSTOMER_SITE_ID, CUSTOMER_ONETIME_FLAG — customer party name, publisher organization ID, and a fixed one-time flag of
'0'. - SUPPLIER_NAME, SUPPLIER_SITE_ID, SUPPLIER_ONETIME_FLAG — supplier cross-reference value, subscriber organization ID, and fixed flag of
'0'. - INDEX1, INDEX2 — literal positional markers
'1'and'2'.
Common Use Cases and Queries
Typical usage centers on supplier scheduling interfaces that publish plan horizons to external trading partners. Because SCHED_HORIZON_END_DATE reflects the plan cutoff date, it is frequently used to bound the window of a published schedule or to validate that a schedule was generated within an acceptable period. A representative query follows:
SELECT header_id,
schedule_reference_num,
sched_horizon_start_date,
sched_horizon_end_date,
customer_name,
supplier_name
FROM rlx_interface_headers_v
WHERE sched_horizon_end_date >= SYSDATE - 30;
Analysts also use the view to reconcile customer and supplier site pairings emitted by the interface, or to confirm that acknowledgement flags and document attribute values align with expected interface conventions. Because the object is documented as not implemented, queries should be validated against the actual deployment before being relied upon in production reporting.
-
APPS.RLM_INBOUND_SV SQL Statements
12.1.1
-
View: RLX_INTERFACE_HEADERS_V
12.2.2
product: RLM - Release Management , implementation_dba_data: Not implemented in this database ,
-
View: RLX_INTERFACE_HEADERS_V
12.1.1
product: RLM - Release Management , implementation_dba_data: Not implemented in this database ,
-
VIEW: RLM.RLM_INTERFACE_HEADERS_ALL#
12.2.2
-
VIEW: RLM.RLM_SCHEDULE_HEADERS_ALL#
12.2.2
-
APPS.RLM_INBOUND_SV SQL Statements
12.2.2
-
TABLE: RLM.RLM_COMP_SCHED_TO_DEMAND_TEMP
12.2.2
owner:RLM, object_type:TABLE, object_name:RLM_COMP_SCHED_TO_DEMAND_TEMP, status:VALID,
-
TABLE: RLM.RLM_COMP_SCHED_TO_DEMAND_TEMP
12.1.1
owner:RLM, object_type:TABLE, object_name:RLM_COMP_SCHED_TO_DEMAND_TEMP, status:VALID,
-
VIEW: APPS.RLM_SCHEDULE_INTERFACE_HDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_SCHEDULE_INTERFACE_HDR_V, object_name:RLM_SCHEDULE_INTERFACE_HDR_V, status:VALID,
-
VIEW: APPS.RLM_SCHEDULE_INTERFACE_HDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_SCHEDULE_INTERFACE_HDR_V, object_name:RLM_SCHEDULE_INTERFACE_HDR_V, status:VALID,
-
APPS.RLM_XML_API SQL Statements
12.1.1
-
APPS.RLM_XML_API SQL Statements
12.2.2
-
VIEW: RLM.RLM_SCHEDULE_HEADERS_ALL#
12.2.2
owner:RLM, object_type:VIEW, object_name:RLM_SCHEDULE_HEADERS_ALL#, status:VALID,
-
VIEW: RLM.RLM_INTERFACE_HEADERS_ALL#
12.2.2
owner:RLM, object_type:VIEW, object_name:RLM_INTERFACE_HEADERS_ALL#, status:VALID,
-
View: RLM_SCHEDULE_INTERFACE_HDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_SCHEDULE_INTERFACE_HDR_V, object_name:RLM_SCHEDULE_INTERFACE_HDR_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_SCHEDULE_INTERFACE_HDR_V ,
-
View: RLM_SCHEDULE_INTERFACE_HDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_SCHEDULE_INTERFACE_HDR_V, object_name:RLM_SCHEDULE_INTERFACE_HDR_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_SCHEDULE_INTERFACE_HDR_V ,
-
PACKAGE BODY: APPS.RLM_INBOUND_SV
12.1.1
-
PACKAGE BODY: APPS.RLM_INBOUND_SV
12.2.2
-
APPS.RLM_COMP_SCH_TO_DEMAND_SV SQL Statements
12.1.1
-
APPS.RLM_COMP_SCH_TO_DEMAND_SV SQL Statements
12.2.2
-
TABLE: RLM.RLM_SCHEDULE_HEADERS_ALL
12.2.2
owner:RLM, object_type:TABLE, fnd_design_data:RLM.RLM_SCHEDULE_HEADERS_ALL, object_name:RLM_SCHEDULE_HEADERS_ALL, status:VALID,
-
TABLE: RLM.RLM_SCHEDULE_HEADERS_ALL
12.1.1
owner:RLM, object_type:TABLE, fnd_design_data:RLM.RLM_SCHEDULE_HEADERS_ALL, object_name:RLM_SCHEDULE_HEADERS_ALL, status:VALID,
-
TABLE: RLM.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,
-
TABLE: RLM.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,
-
APPS.RLM_AD_SV SQL Statements
12.2.2
-
APPS.RLM_AD_SV SQL Statements
12.1.1
-
PACKAGE BODY: APPS.RLM_COMP_SCH_TO_DEMAND_SV
12.1.1
-
PACKAGE BODY: APPS.RLM_COMP_SCH_TO_DEMAND_SV
12.2.2
-
PACKAGE BODY: APPS.RLM_XML_API
12.1.1
-
PACKAGE BODY: APPS.RLM_XML_API
12.2.2
-
APPS.RLM_INBOUND_SV dependencies on RLM_INTERFACE_HEADERS_ALL
12.2.2
-
APPS.RLM_INBOUND_SV dependencies on RLM_INTERFACE_HEADERS
12.1.1
-
APPS.RLM_INBOUND_SV dependencies on RLM_INTERFACE_HEADERS
12.2.2
-
APPS.RLM_XML_API dependencies on RLM_INTERFACE_HEADERS_ALL
12.1.1
-
APPS.RLM_INBOUND_SV dependencies on RLM_INTERFACE_HEADERS_ALL
12.1.1
-
APPS.RLM_XML_API dependencies on RLM_INTERFACE_HEADERS_ALL
12.2.2
-
PACKAGE BODY: APPS.RLM_AD_SV
12.2.2
-
APPS.RLM_COMP_SCH_TO_DEMAND_SV dependencies on RLM_COMP_SCHED_TO_DEMAND_TEMP
12.2.2
-
PACKAGE BODY: APPS.RLM_AD_SV
12.1.1
-
APPS.RLM_COMP_SCH_TO_DEMAND_SV dependencies on RLM_COMP_SCHED_TO_DEMAND_TEMP
12.1.1
-
APPS.RLM_VALIDATEDEMAND_SV SQL Statements
12.2.2
-
APPS.RLM_VALIDATEDEMAND_SV SQL Statements
12.1.1
-
APPS.RLM_RD_SV SQL Statements
12.2.2
-
APPS.RLM_INBOUND_SV dependencies on EC_DEBUG
12.2.2
-
APPS.RLM_INBOUND_SV dependencies on EC_DEBUG
12.1.1
-
APPS.RLM_RD_SV SQL Statements
12.1.1
-
APPS.RLM_RD_SV dependencies on RLM_DP_SV
12.2.2
-
eTRM - RLM Tables and Views
12.2.2
description: This table stores the details of Query Criteria for each of the Query in RLM_UI_QUERIES ,
-
eTRM - RLM Tables and Views
12.1.1
description: This table stores the details of Query Criteria for each of the Query in RLM_UI_QUERIES ,
-
PACKAGE BODY: APPS.RLM_RD_SV
12.1.1