Search Results po_text_hdr
Overview
The PO_TEXT_HDR table is a core data object within the Oracle E-Business Suite (EBS) Process Manufacturing Logistics (GML) module, specifically supporting the OPM (Oracle Process Manufacturing) Purchasing application. It functions as a centralized header text repository, providing a mechanism to store and manage descriptive text entries that can be associated with various purchasing documents and master data entities. Its primary role is to eliminate redundant text storage by allowing multiple transactional and master tables to reference a single, reusable text record via a foreign key. This design enforces data integrity and consistency across the OPM Purchasing landscape in both EBS releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is defined by its primary key, TEXT_CODE, which serves as the unique identifier for each text entry. While the specific column list is not detailed in the provided metadata, the table's description and foreign key relationships imply it stores the descriptive content itself, likely in one or more columns (potentially of type VARCHAR2 or CLOB). The TEXT_CODE is the critical column, acting as the lookup key used by all related tables. The data stored typically includes notes, instructions, or descriptions pertinent to purchase orders, receipts, returns, vendors, and cost management.
Common Use Cases and Queries
A primary use case is retrieving the descriptive text for a specific purchasing document. For instance, to obtain the header text for a purchase order, a query would join PO_ORDR_HDR to PO_TEXT_HDR. Common reporting needs include listing all text entries or finding documents containing specific keywords within their attached notes.
- Sample Query (Get Text for a Purchase Order Header):
SELECT poh.po_number, pth.*
FROM po_ordr_hdr poh,
po_text_hdr pth
WHERE poh.text_code = pth.text_code
AND poh.po_number = '<PO_NUMBER>'; - Sample Query (Find Unused Text Entries):
SELECT pth.text_code
FROM po_text_hdr pth
WHERE NOT EXISTS (SELECT 1 FROM po_ordr_hdr poh WHERE poh.text_code = pth.text_code)
AND NOT EXISTS (SELECT 1 FROM po_ordr_dtl pod WHERE pod.text_code = pth.text_code)
-- Additional NOT EXISTS clauses for other key referencing tables...
Related Objects
PO_TEXT_HDR is a central reference table with extensive foreign key relationships, as documented. The TEXT_CODE column is referenced by numerous OPM Purchasing transactional and master tables, including:
- Purchase Order Documents: PO_ORDR_HDR, PO_ORDR_DTL, PO_RELS_SCH
- Receiving Documents: PO_RECV_HDR, PO_RECV_DTL, PO_RECV_HST
- Return Documents: PO_RTRN_HDR, PO_RTRN_DTL
- Vendor & Cost Master Data: PO_VEND_MST, PO_COST_MST, PO_VEND_CLS
- Other Entities: PO_BPOS_HDR, PO_BPOS_DTL, PO_DIST_DTL, PO_VEND_ASC, PO_VGLD_CLS, PO_VTRD_CLS
These relationships are enforced via foreign keys from the listed tables' TEXT_CODE columns back to the PO_TEXT_HDR.TEXT_CODE primary key. This network of dependencies underscores the table's critical role in the OPM Purchasing data model.
-
Table: PO_TEXT_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_TEXT_HDR, object_name:PO_TEXT_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header text table for OPM Purchasing application. , implementation_dba_data: GML.PO_TEXT_HDR ,
-
Table: PO_TEXT_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_TEXT_HDR, object_name:PO_TEXT_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header text table for OPM Purchasing application. , implementation_dba_data: GML.PO_TEXT_HDR ,
-
TABLE: GML.PO_TEXT_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_TEXT_HDR, object_name:PO_TEXT_HDR, status:VALID,
-
VIEW: GML.PO_TEXT_HDR#
12.2.2
-
TABLE: GML.PO_TEXT_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_TEXT_HDR, object_name:PO_TEXT_HDR, status:VALID,
-
VIEW: GML.PO_TEXT_HDR#
12.2.2
owner:GML, object_type:VIEW, object_name:PO_TEXT_HDR#, status:VALID,
-
SYNONYM: APPS.PO_TEXT_HDR
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_TEXT_HDR, status:VALID,
-
SYNONYM: APPS.PO_TEXT_HDR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_TEXT_HDR, status:VALID,
-
Table: PO_VEND_ASC
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_ASC, object_name:PO_VEND_ASC, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor associations/relationships. , implementation_dba_data: GML.PO_VEND_ASC ,
-
Table: PO_VGLD_CLS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VGLD_CLS, object_name:PO_VGLD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor GL (General Ledger) classes. , implementation_dba_data: GML.PO_VGLD_CLS ,
-
Table: PO_VGLD_CLS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VGLD_CLS, object_name:PO_VGLD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor GL (General Ledger) classes. , implementation_dba_data: GML.PO_VGLD_CLS ,
-
12.1.1 DBA Data
12.1.1
-
Table: PO_VEND_ASC
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_ASC, object_name:PO_VEND_ASC, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor associations/relationships. , implementation_dba_data: GML.PO_VEND_ASC ,
-
Table: PO_VEND_CLS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_CLS, object_name:PO_VEND_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor classes. , implementation_dba_data: GML.PO_VEND_CLS ,
-
Table: PO_VTRD_CLS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VTRD_CLS, object_name:PO_VTRD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor trade class. , implementation_dba_data: GML.PO_VTRD_CLS ,
-
Table: PO_COST_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_COST_DTL, object_name:PO_COST_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Acquistion cost details for a purchase order or a stock receipt. , implementation_dba_data: GML.PO_COST_DTL ,
-
Table: PO_RECV_HST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_HST, object_name:PO_RECV_HST, status:VALID, product: GML - Process Manufacturing Logistics , description: Audit trail of quantity and price changes made to a receipt or return line. , implementation_dba_data: GML.PO_RECV_HST ,
-
Table: PO_VTRD_CLS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VTRD_CLS, object_name:PO_VTRD_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor trade class. , implementation_dba_data: GML.PO_VTRD_CLS ,
-
Table: PO_RTRN_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RTRN_HDR, object_name:PO_RTRN_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Return header. , implementation_dba_data: GML.PO_RTRN_HDR ,
-
Table: PO_RTRN_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RTRN_HDR, object_name:PO_RTRN_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Return header. , implementation_dba_data: GML.PO_RTRN_HDR ,
-
12.2.2 DBA Data
12.2.2
-
Table: PO_COST_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_COST_MST, object_name:PO_COST_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Acquisition costs master table. , implementation_dba_data: GML.PO_COST_MST ,
-
Table: PO_COST_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_COST_MST, object_name:PO_COST_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Acquisition costs master table. , implementation_dba_data: GML.PO_COST_MST ,
-
Table: PO_RTRN_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RTRN_DTL, object_name:PO_RTRN_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Return lines. , implementation_dba_data: GML.PO_RTRN_DTL ,
-
Table: PO_DIST_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_DIST_DTL, object_name:PO_DIST_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: General Ledger (GL) distribution for purchase orders and stock receipt transactions. , implementation_dba_data: GML.PO_DIST_DTL ,
-
Table: PO_VEND_CLS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_CLS, object_name:PO_VEND_CLS, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor classes. , implementation_dba_data: GML.PO_VEND_CLS ,
-
Table: PO_RTRN_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RTRN_DTL, object_name:PO_RTRN_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Return lines. , implementation_dba_data: GML.PO_RTRN_DTL ,
-
Table: PO_RECV_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_DTL, object_name:PO_RECV_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt lines. , implementation_dba_data: GML.PO_RECV_DTL ,
-
12.2.2 DBA Data
12.2.2
-
Table: PO_DIST_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_DIST_DTL, object_name:PO_DIST_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: General Ledger (GL) distribution for purchase orders and stock receipt transactions. , implementation_dba_data: GML.PO_DIST_DTL ,
-
Table: PO_COST_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_COST_DTL, object_name:PO_COST_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Acquistion cost details for a purchase order or a stock receipt. , implementation_dba_data: GML.PO_COST_DTL ,
-
Table: PO_RECV_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_HDR, object_name:PO_RECV_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt header. , implementation_dba_data: GML.PO_RECV_HDR ,
-
Table: PO_RECV_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_DTL, object_name:PO_RECV_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt lines. , implementation_dba_data: GML.PO_RECV_DTL ,
-
Table: PO_RECV_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_HDR, object_name:PO_RECV_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Receipt header. , implementation_dba_data: GML.PO_RECV_HDR ,
-
Table: PO_ORDR_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_DTL, object_name:PO_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order lines. , implementation_dba_data: GML.PO_ORDR_DTL ,
-
Table: PO_RECV_HST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RECV_HST, object_name:PO_RECV_HST, status:VALID, product: GML - Process Manufacturing Logistics , description: Audit trail of quantity and price changes made to a receipt or return line. , implementation_dba_data: GML.PO_RECV_HST ,
-
Table: PO_ORDR_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_HDR, object_name:PO_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order header. , implementation_dba_data: GML.PO_ORDR_HDR ,
-
eTRM - GML Tables and Views
12.1.1
description: Tax reporting classes. ,
-
Table: PO_BPOS_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_DTL, object_name:PO_BPOS_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Blanket purchase order lines. , implementation_dba_data: GML.PO_BPOS_DTL ,
-
Table: PO_RELS_SCH
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RELS_SCH, object_name:PO_RELS_SCH, status:VALID, product: GML - Process Manufacturing Logistics , description: Release schedules for a blanket purchase order. , implementation_dba_data: GML.PO_RELS_SCH ,
-
Table: PO_RELS_SCH
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_RELS_SCH, object_name:PO_RELS_SCH, status:VALID, product: GML - Process Manufacturing Logistics , description: Release schedules for a blanket purchase order. , implementation_dba_data: GML.PO_RELS_SCH ,
-
Table: PO_BPOS_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_HDR, object_name:PO_BPOS_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header information for blanket purchase orders. , implementation_dba_data: GML.PO_BPOS_HDR ,
-
Table: PO_ORDR_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_DTL, object_name:PO_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order lines. , implementation_dba_data: GML.PO_ORDR_DTL ,
-
Table: PO_VEND_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_VEND_MST, object_name:PO_VEND_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Vendor master. , implementation_dba_data: GML.PO_VEND_MST ,
-
12.2.2 DBA Data
12.2.2
-
Table: PO_BPOS_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_HDR, object_name:PO_BPOS_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header information for blanket purchase orders. , implementation_dba_data: GML.PO_BPOS_HDR ,
-
Table: PO_ORDR_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_ORDR_HDR, object_name:PO_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Purchase order header. , implementation_dba_data: GML.PO_ORDR_HDR ,
-
Table: PO_BPOS_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.PO_BPOS_DTL, object_name:PO_BPOS_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Blanket purchase order lines. , implementation_dba_data: GML.PO_BPOS_DTL ,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2