Search Results sy_text_hdr
Overview
The SY_TEXT_HDR table is a core master data table within the GMA (Process Manufacturing Systems) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It serves as the central repository for creating and storing text codes used throughout the GMA application. These text codes are a fundamental mechanism for associating descriptive, user-defined text with various entities in Oracle Process Manufacturing (OPM). The table's primary role is to provide a controlled, reusable library of text identifiers that can be linked to specific records in other GMA tables, ensuring consistency and manageability of textual information across the manufacturing system.
Key Information Stored
The central piece of information stored in the SY_TEXT_HDR table is the TEXT_CODE, which acts as the primary key (SY_TEXT_HDR_PK). This column holds the unique identifier for a specific block of descriptive text. While the provided metadata does not list other columns, a table of this nature in the GMA schema typically pairs with a related detail table (such as SY_TEXT_TKN_TL, which is a foreign key reference) to store the actual multilingual text strings associated with each code. The TEXT_CODE in SY_TEXT_HDR is the master reference, and the related detail tables contain the translated descriptions. This design separates the code (used for data relationships and integrity) from the translatable text itself.
Common Use Cases and Queries
The primary use case for SY_TEXT_HDR is to retrieve the master list of available text codes for configuration or reporting purposes. A common operational query involves joining SY_TEXT_HDR with its detail table to fetch descriptions in a specific language for a set of codes used elsewhere in the system. For instance, to find the text associated with a specific organization, one would join SY_ORGN_MST (which contains a TEXT_CODE foreign key) to SY_TEXT_HDR and then to the translation table. A typical SQL pattern is:
- SELECT h.text_code, tl.description FROM gma.sy_text_hdr h, gma.sy_text_tkn_tl tl WHERE h.text_code = tl.text_code AND tl.language = USERENV('LANG');
This table is also critical for data purging configurations, quality management documents, geographic definitions, and unit of measure setups, as evidenced by its numerous foreign key relationships.
Related Objects
The SY_TEXT_HDR table has extensive relationships within the GMA schema, as it is a referenced parent table for many key entities. As documented, its TEXT_CODE column is referenced by foreign keys in numerous master and transaction tables. Key related objects include:
- SY_TEXT_TKN_TL: Likely the primary child table storing the translated text descriptions for each code.
- Master Data Tables: SY_ORGN_MST (Organizations), SY_GEOG_MST (Geography), SY_UOMS_MST (Units of Measure), SY_REAS_CDS (Reason Codes).
- Document Management: SY_DOCS_MST and SY_DOCS_SEQ.
- Data Purging Framework: SY_PURG_MST, SY_PURG_DEF, SY_PURG_DEF_ACT, SY_PURG_DEF_CRIT, and SY_PURG_MST_CRIT.
This network of foreign key dependencies underscores SY_TEXT_HDR's role as a foundational component for descriptive data across the GMA module.
-
Table: SY_TEXT_HDR
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_TEXT_HDR, object_name:SY_TEXT_HDR, status:VALID, product: GMA - Process Manufacturing Systems , description: Master table for creation and storage of OPM text codes associated with GMA tables. , implementation_dba_data: GMA.SY_TEXT_HDR ,
-
Table: SY_TEXT_HDR
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_TEXT_HDR, object_name:SY_TEXT_HDR, status:VALID, product: GMA - Process Manufacturing Systems , description: Master table for creation and storage of OPM text codes associated with GMA tables. , implementation_dba_data: GMA.SY_TEXT_HDR ,
-
Table: SY_TEXT_TKN_TL
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_TEXT_TKN_TL, object_name:SY_TEXT_TKN_TL, status:VALID, product: GMA - Process Manufacturing Systems , description: Stores OPM Text Token definitions , implementation_dba_data: GMA.SY_TEXT_TKN_TL ,
-
Table: SY_TEXT_TKN_TL
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_TEXT_TKN_TL, object_name:SY_TEXT_TKN_TL, status:VALID, product: GMA - Process Manufacturing Systems , description: Stores OPM Text Token definitions , implementation_dba_data: GMA.SY_TEXT_TKN_TL ,
-
Table: SY_PURG_MST_CRIT
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_MST_CRIT, object_name:SY_PURG_MST_CRIT, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Purge and Archive table used to store the criteria entered specific to a Purge ID. , implementation_dba_data: GMA.SY_PURG_MST_CRIT ,
-
Table: SY_PURG_DEF
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_DEF, object_name:SY_PURG_DEF, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Purge and Archive definitions are stored in this table , implementation_dba_data: GMA.SY_PURG_DEF ,
-
Table: SY_PURG_DEF_CRIT
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_DEF_CRIT, object_name:SY_PURG_DEF_CRIT, status:VALID, product: GMA - Process Manufacturing Systems , description: Stores the Purge Criteria tags. These criteria are used to determine what rows will be archived and purged. , implementation_dba_data: GMA.SY_PURG_DEF_CRIT ,
-
Table: SY_PURG_MST
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_MST, object_name:SY_PURG_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: Table storing data of all OPM Archives/Purges that have been run , implementation_dba_data: GMA.SY_PURG_MST ,
-
Table: SY_PURG_DEF
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_DEF, object_name:SY_PURG_DEF, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Purge and Archive definitions are stored in this table , implementation_dba_data: GMA.SY_PURG_DEF ,
-
Table: SY_PURG_MST_CRIT
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_MST_CRIT, object_name:SY_PURG_MST_CRIT, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Purge and Archive table used to store the criteria entered specific to a Purge ID. , implementation_dba_data: GMA.SY_PURG_MST_CRIT ,
-
Table: SY_PURG_DEF_CRIT
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_DEF_CRIT, object_name:SY_PURG_DEF_CRIT, status:VALID, product: GMA - Process Manufacturing Systems , description: Stores the Purge Criteria tags. These criteria are used to determine what rows will be archived and purged. , implementation_dba_data: GMA.SY_PURG_DEF_CRIT ,
-
Table: SY_GEOG_MST
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_GEOG_MST, object_name:SY_GEOG_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: Geographic regions. , implementation_dba_data: GMA.SY_GEOG_MST ,
-
Table: SY_GEOG_MST
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_GEOG_MST, object_name:SY_GEOG_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: Geographic regions. , implementation_dba_data: GMA.SY_GEOG_MST ,
-
Table: SY_DOCS_MST
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_DOCS_MST, object_name:SY_DOCS_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: Oracle Process Manufacturing Document master. This table stores document definitions , implementation_dba_data: GMA.SY_DOCS_MST ,
-
Table: SY_DOCS_SEQ
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_DOCS_SEQ, object_name:SY_DOCS_SEQ, status:VALID, product: GMA - Process Manufacturing Systems , description: Document sequencing by organization. , implementation_dba_data: GMA.SY_DOCS_SEQ ,
-
Table: SY_PURG_DEF_ACT
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_DEF_ACT, object_name:SY_PURG_DEF_ACT, status:VALID, product: GMA - Process Manufacturing Systems , description: Designates the Action to be performed by OPM Purge and Archive on a table by table basis. , implementation_dba_data: GMA.SY_PURG_DEF_ACT ,
-
Table: SY_PURG_DEF_ACT
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_DEF_ACT, object_name:SY_PURG_DEF_ACT, status:VALID, product: GMA - Process Manufacturing Systems , description: Designates the Action to be performed by OPM Purge and Archive on a table by table basis. , implementation_dba_data: GMA.SY_PURG_DEF_ACT ,
-
Table: SY_PURG_MST
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_PURG_MST, object_name:SY_PURG_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: Table storing data of all OPM Archives/Purges that have been run , implementation_dba_data: GMA.SY_PURG_MST ,
-
Table: SY_UOMS_TYP
12.2.2
product: GMA - Process Manufacturing Systems , description: Unit of measure type master for Oracle Process Manufacturing products. Define unit of measure types here, which categorize Units of Measure. Synchronized with MTL_UOM_CLASSES , implementation_dba_data: Not implemented in this database ,
-
Table: SY_UOMS_TYP
12.1.1
product: GMA - Process Manufacturing Systems , description: Unit of measure type master for Oracle Process Manufacturing products. Define unit of measure types here, which categorize Units of Measure. Synchronized with MTL_UOM_CLASSES , implementation_dba_data: Not implemented in this database ,
-
Table: SY_DOCS_SEQ
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_DOCS_SEQ, object_name:SY_DOCS_SEQ, status:VALID, product: GMA - Process Manufacturing Systems , description: Document sequencing by organization. , implementation_dba_data: GMA.SY_DOCS_SEQ ,
-
Table: SY_DOCS_MST
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_DOCS_MST, object_name:SY_DOCS_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: Oracle Process Manufacturing Document master. This table stores document definitions , implementation_dba_data: GMA.SY_DOCS_MST ,
-
Table: SY_REAS_CDS_B
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_REAS_CDS_B, object_name:SY_REAS_CDS_B, status:VALID, product: GMA - Process Manufacturing Systems , description: The Reason Code table is used to store Reason Code definitions which provide information on the increase or decrease in inventory. Reason codes are used to flag transactions and attach reasons to them. , implementation_dba_data: GMA.SY_REAS_CDS_B ,
-
Table: SY_REAS_CDS
12.1.1
product: GMA - Process Manufacturing Systems , description: The Reason Code table is used to store Reason Code definitions which provide information on the increase or decrease in inventory. Reason codes are used to flag transactions and attach reasons to them. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_REAS_CDS
12.2.2
product: GMA - Process Manufacturing Systems , description: The Reason Code table is used to store Reason Code definitions which provide information on the increase or decrease in inventory. Reason codes are used to flag transactions and attach reasons to them. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_REAS_CDS_B
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_REAS_CDS_B, object_name:SY_REAS_CDS_B, status:VALID, product: GMA - Process Manufacturing Systems , description: The Reason Code table is used to store Reason Code definitions which provide information on the increase or decrease in inventory. Reason codes are used to flag transactions and attach reasons to them. , implementation_dba_data: GMA.SY_REAS_CDS_B ,
-
Table: SY_ORGN_MST_B
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ORGN_MST_B, object_name:SY_ORGN_MST_B, status:VALID, product: GMA - Process Manufacturing Systems , description: Organization code master Base Table. , implementation_dba_data: GMA.SY_ORGN_MST_B ,
-
Table: SY_ORGN_MST_B
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ORGN_MST_B, object_name:SY_ORGN_MST_B, status:VALID, product: GMA - Process Manufacturing Systems , description: Organization code master Base Table. , implementation_dba_data: GMA.SY_ORGN_MST_B ,
-
Table: SY_ORGN_MST
12.1.1
product: GMA - Process Manufacturing Systems , description: Organization code master. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_ORGN_MST
12.2.2
product: GMA - Process Manufacturing Systems , description: Organization code master. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_UOMS_MST
12.2.2
product: GMA - Process Manufacturing Systems , description: Unit of measure master for Oracle Process Manufacturing. Synchronized with MTL_UNITS_OF_MEASURE and associated tables when Oracle Financials is used. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_UOMS_MST
12.1.1
product: GMA - Process Manufacturing Systems , description: Unit of measure master for Oracle Process Manufacturing. Synchronized with MTL_UNITS_OF_MEASURE and associated tables when Oracle Financials is used. , implementation_dba_data: Not implemented in this database ,