Search Results subline_uom_code




Overview

The RLM_SCHEDULE_INTERFACE_LINES_V view is an Oracle E-Business Suite Release Management (RLM) database object, owned by the APPS schema and maintained in VALID status. It exposes line-level scheduling interface data used within the Release Management module, which governs order-based and forecast-based shipping schedules flowing into Oracle Order Management and related supply chain processes. The view presents a denormalized, reporting-friendly projection of the schedule interface line records, including item identifiers, quantity type indicators, date and UOM qualifiers, ship-to and ship-from address attributes, customer purchase order references, routing and transit time details, and label information. Rather than functioning as a transactional entry surface, it serves as a read interface for downstream integration and inquiry — allowing concurrent programs, reports, and external systems to retrieve staged scheduling lines in a consistent, resolved shape across both 12.1.1 and 12.2.2 environments.

Underlying Base Objects

Per the documented ETRM metadata, the view is defined over the following APPS synonyms: RLM_INTERFACE_HEADERS, RLM_INTERFACE_HEADERS_ALL, RLM_INTERFACE_LINES, RLM_SCHEDULE_HEADERS, and RLM_SCHEDULE_LINES_ALL. The view text itself selects predominantly from alias A — the interface line entity — joined conceptually to header and schedule structures. RLM_INTERFACE_LINES supplies the primary staging rows that carry the inbound schedule line content; RLM_INTERFACE_HEADERS and RLM_INTERFACE_HEADERS_ALL provide the parent header context (organization, customer, and processing group), while RLM_SCHEDULE_HEADERS and RLM_SCHEDULE_LINES_ALL represent the destination schedule header and line tables into which the interface records are ultimately applied. The view therefore sits at the boundary between the interface/staging layer and the live scheduling tables, which is the architectural reason it is commonly referenced by validation and import-concurrency logic.

Key Columns

Common Use Cases and Queries

Typical uses include diagnosing records that are pending import into the live schedule tables, validating that required shipping and address attributes are populated before submission of the schedule import concurrent program, and building reconciliation reports comparing interface content to RLM_SCHEDULE_LINES_ALL. A representative query retrieves unprocessed interface lines for a header:

SELECT line_id, line_number, inventory_item_id, qty_type_code,
       uom_code, start_date, ship_to_org_id, cust_po_number
FROM   apps.rlm_schedule_interface_lines_v
WHERE  header_id = :p_header_id
ORDER  BY line_number;

Because the view already resolves header context and the header references used by validation logic, it is preferable to querying the staging table directly when header-level attributes are needed. All access should observe standard APPS schema privileges and any organization-level security applied by the calling responsibility.