Search Results pm_text_hdr
Overview
The PM_TEXT_HDR table is a core reference data object within the Oracle E-Business Suite Process Manufacturing (GME) module, specifically for Process Execution. It functions as a master repository for defining and managing text types used throughout the Production Management system. Its primary role is to establish a controlled list of text codes, such as "Instructions," "Comments," or "Quality Notes," which can then be associated with various production entities. This design ensures consistency and standardization in how descriptive text is categorized and applied across manufacturing processes, from batches to routing details.
Key Information Stored
While the provided metadata does not list specific columns, the structure and foreign key relationships indicate its core data elements. The central column is TEXT_CODE, which serves as the table's primary key. This column stores the unique identifier for each text type definition. Typically, a companion column like DESCRIPTION would also exist to provide a meaningful name for the text code. The table's purpose is to store this lookup information, which is then referenced via the TEXT_CODE foreign key in numerous transactional tables across the GME schema.
Common Use Cases and Queries
A primary use case is retrieving the list of all valid text types available for assignment within production transactions. This is essential for setup, reporting, and data validation. Common queries involve joining PM_TEXT_HDR to its related transactional tables to translate the stored TEXT_CODE into a readable description for reports. For example, to fetch batch header information along with the associated text type description, one would use a query such as:
SELECT b.batch_no, h.text_code, t.description
FROM gme.pm_btch_hdr b,
gme.pm_text_hdr t
WHERE b.text_code = t.text_code;
Another critical use is data integrity validation, ensuring that any TEXT_CODE populated in a child table exists in this master header table.
Related Objects
As documented by the foreign keys, PM_TEXT_HDR is a parent table to several key transactional tables in the GME module. These dependent objects include:
- PM_BTCH_HDR: Associates a text type with a production batch header.
- PM_MATL_DTL: Associates a text type with batch material details.
- PM_OPRN_DTL: Associates a text type with batch operation details.
- PM_ROUT_DEP: Associates a text type with routing dependencies.
- PM_ROUT_MTL: Associates a text type with routing materials.
This widespread referencing underscores the table's fundamental role in attaching categorized textual information to the primary entities governing process manufacturing execution.
-
Table: PM_TEXT_HDR
12.2.2
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_TEXT_HDR, object_name:PM_TEXT_HDR, status:VALID, product: GME - Process Manufacturing Process Execution , description: Table used to store text types for Production Management , implementation_dba_data: GME.PM_TEXT_HDR ,
-
Table: PM_TEXT_HDR
12.1.1
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_TEXT_HDR, object_name:PM_TEXT_HDR, status:VALID, product: GME - Process Manufacturing Process Execution , description: Table used to store text types for Production Management , implementation_dba_data: GME.PM_TEXT_HDR ,
-
Table: PM_ROUT_DEP
12.1.1
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_ROUT_DEP, object_name:PM_ROUT_DEP, status:VALID, product: GME - Process Manufacturing Process Execution , description: Non-standard batch steps dependencies. , implementation_dba_data: GME.PM_ROUT_DEP ,
-
Table: PM_ROUT_DEP
12.2.2
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_ROUT_DEP, object_name:PM_ROUT_DEP, status:VALID, product: GME - Process Manufacturing Process Execution , description: Non-standard batch steps dependencies. , implementation_dba_data: GME.PM_ROUT_DEP ,
-
Table: PM_MATL_DTL
12.1.1
product: GME - Process Manufacturing Process Execution , description: Batch or FPO material details. , implementation_dba_data: Not implemented in this database ,
-
Table: PM_ROUT_MTL
12.1.1
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_ROUT_MTL, object_name:PM_ROUT_MTL, status:VALID, product: GME - Process Manufacturing Process Execution , description: Batch steps to batch lines relationships. , implementation_dba_data: GME.PM_ROUT_MTL ,
-
Table: PM_ROUT_MTL
12.2.2
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_ROUT_MTL, object_name:PM_ROUT_MTL, status:VALID, product: GME - Process Manufacturing Process Execution , description: Batch steps to batch lines relationships. , implementation_dba_data: GME.PM_ROUT_MTL ,
-
Table: PM_MATL_DTL
12.2.2
product: GME - Process Manufacturing Process Execution , description: Batch or FPO material details. , implementation_dba_data: Not implemented in this database ,
-
Table: PM_OPRN_DTL
12.2.2
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_OPRN_DTL, object_name:PM_OPRN_DTL, status:VALID, product: GME - Process Manufacturing Process Execution , description: Batch operation details. , implementation_dba_data: GME.PM_OPRN_DTL ,
-
Table: PM_OPRN_DTL
12.1.1
owner:GME, object_type:TABLE, fnd_design_data:GME.PM_OPRN_DTL, object_name:PM_OPRN_DTL, status:VALID, product: GME - Process Manufacturing Process Execution , description: Batch operation details. , implementation_dba_data: GME.PM_OPRN_DTL ,
-
Table: PM_BTCH_HDR
12.2.2
product: GME - Process Manufacturing Process Execution , description: Batch/FPO header. , implementation_dba_data: Not implemented in this database ,
-
Table: PM_BTCH_HDR
12.1.1
product: GME - Process Manufacturing Process Execution , description: Batch/FPO header. , implementation_dba_data: Not implemented in this database ,