Search Results ps_schd_hdr
Overview
The PS_SCHD_HDR table is a core data object within the Oracle E-Business Suite Process Manufacturing (GMP) module, specifically for the Process Planning sub-module. It functions as the primary header table for production schedules. In the context of manufacturing operations, a schedule defines the plan for producing batches or lots of a product. This table stores the master definition and controlling attributes for each unique schedule, serving as the parent record for detailed scheduling components. Its existence is critical for the planning, execution, and tracking of manufacturing processes within Oracle EBS.
Key Information Stored
The table's structure is anchored by its primary key, SCHEDULE_ID, which uniquely identifies each schedule record. A significant alternate unique key is the combination of ORGN_CODE and SCHEDULE, indicating that within a specific operating unit (organization), the schedule name or identifier must be unique. The ORGN_CODE column itself is a foreign key to the organization master tables (SY_ORGN_MST and SY_ORGN_MST_B), tying the schedule to a specific manufacturing entity. Another notable column is TEXT_CODE, which links to the PS_TEXT_HDR table, allowing for the storage of descriptive notes or instructions associated with the schedule header.
Common Use Cases and Queries
This table is central to scheduling-related inquiries and reporting. Common operational scenarios include retrieving all active schedules for a given organization, listing schedules by product or date range, and generating high-level schedule summaries for management review. A typical query pattern involves joining PS_SCHD_HDR with organization and detail tables to provide a comprehensive view.
- Basic Schedule Listing:
SELECT schedule_id, orgn_code, schedule FROM gmp.ps_schd_hdr WHERE orgn_code = :org_id ORDER BY schedule; - Schedule Header with Organization Name:
SELECT sh.schedule_id, sh.schedule, sh.orgn_code, om.orgn_name FROM gmp.ps_schd_hdr sh, sy_orgn_mst om WHERE sh.orgn_code = om.orgn_code; - Identifying Schedules with Associated Details:
SELECT DISTINCT h.schedule_id, h.schedule FROM gmp.ps_schd_hdr h INNER JOIN gmp.ps_schd_dtl d ON h.schedule_id = d.schedule_id;
Related Objects
As a header table, PS_SCHD_HDR has numerous dependent child tables that store the specifics of the schedule, forming a key data hierarchy. The primary foreign key relationships, as documented, are:
- PS_SCHD_DTL: The main detail table, containing the individual lines or steps of the schedule.
- PS_SCHD_FOR: Likely stores forecast or demand data linked to the schedule.
- MR_PARM_DTL and MR_SIZE_TBL: Manufacturing-related parameter and size tables that reference the schedule.
- PS_TEXT_HDR: Provides descriptive text via the TEXT_CODE foreign key.
- SY_ORGN_MST / SY_ORGN_MST_B: Master tables defining the organization to which the schedule belongs.
Any data extraction or integration effort concerning process manufacturing schedules must begin with this header table and navigate through these related objects to build a complete picture.
-
Table: PS_SCHD_HDR
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_HDR, object_name:PS_SCHD_HDR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Schedule header. , implementation_dba_data: GMP.PS_SCHD_HDR ,
-
Table: PS_SCHD_HDR
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_HDR, object_name:PS_SCHD_HDR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Schedule header. , implementation_dba_data: GMP.PS_SCHD_HDR ,
-
APPS.PMI_PRODUCTION_SUM dependencies on PS_SCHD_HDR
12.1.1
-
APPS.PKG_GMP_BUCKET_DATA dependencies on PS_SCHD_HDR
12.2.2
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on PS_SCHD_HDR
12.1.1
-
APPS.GMPMPACT dependencies on PS_SCHD_HDR
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on PS_SCHD_HDR
12.1.1
-
APPS.PKG_GMP_BUCKET_DATA dependencies on PS_SCHD_HDR
12.1.1
-
APPS.GMPMPACT dependencies on PS_SCHD_HDR
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on PS_SCHD_HDR
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on PS_SCHD_HDR
12.2.2
-
APPS.GMPPSRP dependencies on PS_SCHD_HDR
12.1.1
-
APPS.GMPPSRP dependencies on PS_SCHD_HDR
12.2.2
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on PS_SCHD_DTL
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on PS_SCHD_DTL
12.2.2
-
APPS.PMI_PRODUCTION_SUM dependencies on PS_SCHD_DTL
12.1.1
-
SYNONYM: APPS.PS_SCHD_HDR
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PS_SCHD_HDR, status:VALID,
-
SYNONYM: APPS.PS_SCHD_HDR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PS_SCHD_HDR, status:VALID,
-
VIEW: GMP.PS_SCHD_HDR#
12.2.2
owner:GMP, object_type:VIEW, object_name:PS_SCHD_HDR#, status:VALID,
-
VIEW: GMP.PS_SCHD_HDR#
12.2.2
-
Table: PS_SCHD_FOR
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_FOR, object_name:PS_SCHD_FOR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Schedule forecast association. , implementation_dba_data: GMP.PS_SCHD_FOR ,
-
Table: PS_SCHD_FOR
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_FOR, object_name:PS_SCHD_FOR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Schedule forecast association. , implementation_dba_data: GMP.PS_SCHD_FOR ,
-
APPS.PMI_PRODUCTION_SUM dependencies on MR_SHDY_DTL
12.2.2
-
Table: MR_PARM_DTL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.MR_PARM_DTL, object_name:MR_PARM_DTL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: MRP run parameters. , implementation_dba_data: GMP.MR_PARM_DTL ,
-
Table: MR_PARM_DTL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.MR_PARM_DTL, object_name:MR_PARM_DTL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: MRP run parameters. , implementation_dba_data: GMP.MR_PARM_DTL ,
-
Table: PS_SCHD_DTL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_DTL, object_name:PS_SCHD_DTL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Schedule detail. , implementation_dba_data: GMP.PS_SCHD_DTL ,
-
APPS.PMI_PRODUCTION_SUM dependencies on MR_SHCL_DTL
12.2.2
-
PACKAGE BODY: APPS.GMPPSRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMPPSRP, status:VALID,
-
Table: PS_TEXT_HDR
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_TEXT_HDR, object_name:PS_TEXT_HDR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Table used to store text types for Production Scheduling. , implementation_dba_data: GMP.PS_TEXT_HDR ,
-
Table: PS_TEXT_HDR
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_TEXT_HDR, object_name:PS_TEXT_HDR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Table used to store text types for Production Scheduling. , implementation_dba_data: GMP.PS_TEXT_HDR ,
-
APPS.PMI_PRODUCTION_SUM dependencies on MR_SHDY_DTL
12.1.1
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on MR_SHCL_DTL
12.1.1
-
APPS.PMI_PRODUCTION_SUM dependencies on MR_SHCL_DTL
12.1.1
-
APPS.OPI_EDW_OPM_PRD_PKG dependencies on MR_SHDY_DTL
12.1.1
-
Table: PS_SCHD_DTL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_DTL, object_name:PS_SCHD_DTL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Schedule detail. , implementation_dba_data: GMP.PS_SCHD_DTL ,
-
PACKAGE: APPS.PMI_PRODUCTION_SUM
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PMI_PRODUCTION_SUM, status:VALID,
-
Table: MR_SIZE_TBL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.MR_SIZE_TBL, object_name:MR_SIZE_TBL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: MRP runs sizing. MRP allocates memory based on max number of rows mentioned in this table. The values are updated when a MRP Run gets rows more than mentioned in this table. , implementation_dba_data: GMP.MR_SIZE_TBL ,
-
Table: MR_SIZE_TBL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.MR_SIZE_TBL, object_name:MR_SIZE_TBL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: MRP runs sizing. MRP allocates memory based on max number of rows mentioned in this table. The values are updated when a MRP Run gets rows more than mentioned in this table. , implementation_dba_data: GMP.MR_SIZE_TBL ,
-
PACKAGE: APPS.PMI_PRODUCTION_SUM
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PMI_PRODUCTION_SUM, status:VALID,
-
PACKAGE BODY: APPS.OPI_EDW_OPM_PRD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_EDW_OPM_PRD_PKG, status:VALID,
-
PACKAGE BODY: APPS.PKG_GMP_BUCKET_DATA
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PKG_GMP_BUCKET_DATA, status:VALID,
-
PACKAGE BODY: APPS.PMI_PRODUCTION_SUM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_PRODUCTION_SUM, status:VALID,
-
PACKAGE BODY: APPS.PKG_GMP_BUCKET_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PKG_GMP_BUCKET_DATA, status:VALID,
-
PACKAGE BODY: APPS.PMI_PRODUCTION_SUM
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_PRODUCTION_SUM, status:VALID,
-
PACKAGE BODY: APPS.GMPPSRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMPPSRP, status:VALID,
-
TABLE: GMP.PS_SCHD_HDR
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_SCHD_HDR, object_name:PS_SCHD_HDR, status:VALID,
-
PACKAGE BODY: APPS.GMPMPACT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMPMPACT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2