Search Results mrp_repetitive_periods
Overview
The MRP_REPETITIVE_PERIODS table is a core data structure within the Oracle E-Business Suite (EBS) Master Scheduling/MRP module. It serves as the system of record for defining the planning calendar used in repetitive manufacturing. The table's primary function is to store the specific start dates for each period within a repetitive planning horizon. This calendar is essential for the system to correctly bucket and schedule repetitive production, which is characterized by the continuous production of standard items over a long period at a constant daily rate. The integrity of this period definition directly impacts the accuracy of Material Requirements Planning (MRP) and Master Production Schedule (MPS) calculations for repetitive items.
Key Information Stored
The table is designed with a concise structure focused on uniquely identifying a planning period within a specific manufacturing organization. The primary key constraint, MRP_REPETITIVE_PERIODS_PK, enforces uniqueness on the combination of two critical columns: PERIOD_START_DATE and ORGANIZATION_ID. The PERIOD_START_DATE column holds the exact calendar date that marks the beginning of a planning period. The ORGANIZATION_ID column stores the identifier for the inventory organization to which this period definition applies, allowing for organization-specific planning calendars. This simple yet critical pairing ensures that the repetitive planning engine has a definitive and non-conflicting timeline for scheduling operations.
Common Use Cases and Queries
This table is primarily referenced by the MRP planning engine during plan generation. Common operational and reporting use cases include validating the setup of the repetitive planning calendar and troubleshooting planning output. A system administrator might run a query to review all defined periods for a specific organization to ensure the calendar is continuous and correctly aligned with the fiscal or operational calendar. A typical SQL pattern would be:
- SELECT period_start_date FROM mrp_repetitive_periods WHERE organization_id = :org_id ORDER BY period_start_date;
This data is also foundational for custom reports that analyze repetitive schedule adherence, capacity loading over defined periods, or period-based material consumption. Any discrepancy or gap in the sequence of period start dates can lead to planning failures or incorrect schedule bucketing.
Related Objects
The MRP_REPETITIVE_PERIODS table maintains a direct foreign key relationship with the MRP_PARAMETERS table, which is central to MRP module configuration. The documented relationship is:
- Foreign Key from MRP_REPETITIVE_PERIODS to MRP_PARAMETERS: The ORGANIZATION_ID column in MRP_REPETITIVE_PERIODS references the ORGANIZATION_ID in MRP_PARAMETERS. This enforces referential integrity, ensuring that a period cannot be defined for an organization that does not have MRP parameters established. This relationship underscores that the repetitive periods are a subset of the broader MRP configuration for each organization.
While not explicitly listed in the provided metadata, this table is logically central to the repetitive scheduling and planning functions. It is referenced by planning engine packages and is the source for period definitions used in the MRP_REPETITIVE_SCHEDULES and related planning tables.
-
Table: MRP_REPETITIVE_PERIODS
12.2.2
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_REPETITIVE_PERIODS, object_name:MRP_REPETITIVE_PERIODS, status:VALID, product: MRP - Master Scheduling/MRP , description: MRP repetitive planning period start dates , implementation_dba_data: MRP.MRP_REPETITIVE_PERIODS ,
-
Table: MRP_REPETITIVE_PERIODS
12.1.1
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_REPETITIVE_PERIODS, object_name:MRP_REPETITIVE_PERIODS, status:VALID, product: MRP - Master Scheduling/MRP , description: MRP repetitive planning period start dates , implementation_dba_data: MRP.MRP_REPETITIVE_PERIODS ,
-
Table: MRP_PARAMETERS
12.1.1
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_PARAMETERS, object_name:MRP_PARAMETERS, status:VALID, product: MRP - Master Scheduling/MRP , description: Planning parameters , implementation_dba_data: MRP.MRP_PARAMETERS ,
-
Table: MRP_PARAMETERS
12.2.2
owner:MRP, object_type:TABLE, fnd_design_data:MRP.MRP_PARAMETERS, object_name:MRP_PARAMETERS, status:VALID, product: MRP - Master Scheduling/MRP , description: Planning parameters , implementation_dba_data: MRP.MRP_PARAMETERS ,