Search Results mrp_repetitive_schedules




Overview

The WIP_LINES table is a core master data table within the Oracle E-Business Suite Work in Process (WIP) module. It serves as the central repository for defining and storing all production lines within a manufacturing organization. A production line represents a logical or physical manufacturing flow path used to produce items, particularly in repetitive and flow manufacturing environments. The table's primary role is to provide a reference entity for scheduling, costing, material movement, and capacity planning. Its integrity is enforced by unique constraints on both a system-generated identifier (LINE_ID) and a business key combination of user-defined line code and organization (LINE_CODE, ORGANIZATION_ID), ensuring each line is uniquely identifiable within the application.

Key Information Stored

The table's structure centers on identifying the production line and its organizational context. The most critical columns include LINE_ID, the primary key surrogate identifier; LINE_CODE, the user-defined name or code for the production line; and ORGANIZATION_ID, which links the line to a specific inventory organization, establishing the operational context. Other significant attributes typically include a DESCRIPTION field, status indicators (like ACTIVE_INACTIVE), and dates for enablement and disablement. As evidenced by the foreign key relationships, this table acts as a key reference point for transactional and planning data across manufacturing and supply chain modules.

Common Use Cases and Queries

This table is fundamental for reporting and integration tasks related to production line performance and configuration. Common use cases include generating a list of all active production lines for a given organization, analyzing which lines are associated with specific jobs or schedules, and validating line codes during data migration or interface processing. A typical query would join WIP_LINES to organizational and transactional tables. For example, to list all repetitive schedules by line, one might use:

  • SELECT wl.line_code, wrs.* FROM wip_lines wl, wip_repetitive_schedules wrs WHERE wl.line_id = wrs.line_id AND wl.organization_id = :p_org_id;

Another common pattern is verifying line existence before inserting interface data, such as into WIP_MOVE_TXN_INTERFACE or WIP_JOB_SCHEDULE_INTERFACE, to prevent transaction errors.

Related Objects

As indicated by the extensive foreign key metadata, the WIP_LINES table is a pivotal hub integrated with numerous modules. Key related objects include:

This wide integration underscores the table's critical role as a master data entity for the manufacturing flow throughout Oracle EBS.