Search Results oke_print_forms_tl_pk
Overview
The OKE_PRINT_FORMS_TL table is a core data object within the Oracle E-Business Suite (EBS) Project Contracts (OKE) module. It functions as a translation table, storing multi-lingual descriptions for predefined print forms. These print forms are templates used to generate formal contract documents, such as agreements, amendments, or work orders, from within the application. The table's primary role is to support global deployments by enabling the display of user-friendly form names in the language of the end-user's session, ensuring clarity and consistency in the user interface across different locales. Its existence is critical for the correct rendering and selection of contract document templates in a multi-language environment.
Key Information Stored
The table's structure is designed to map a technical print form identifier to its human-readable name in multiple languages. Based on the provided metadata, the key columns are defined by two primary key constraints. The first, OKE_PRINT_FORMS_TK_UK01, uniquely identifies a record by the combination of PRINT_FORM_NAME and LANGUAGE. The second, OKE_PRINT_FORMS_TL_PK, uses PRINT_FORM_CODE and LANGUAGE. This indicates that the table stores at least these three critical columns: a language code (e.g., 'US' for American English), a technical code for the print form used internally by the application logic, and the corresponding translated name for that form. The presence of two unique keys suggests the PRINT_FORM_NAME itself may also be a unique identifier per language, alongside the code.
Common Use Cases and Queries
The primary use case is retrieving the localized name of a print form for display in an EBS form or report. A common query would join this table to its base table (likely OKE_PRINT_FORMS_B) to fetch a list of available forms in the user's current session language. For example, an application program would use the session's NLS_LANGUAGE setting to filter the query.
- Sample Query for Form List:
SELECT pf.print_form_code, tl.print_form_name FROM oke_print_forms_b pf, oke_print_forms_tl tl WHERE pf.print_form_code = tl.print_form_code AND tl.language = USERENV('LANG'); - Reporting Use Case: Custom reports that list contract documents generated can join through related tables to include the translated form name from OKE_PRINT_FORMS_TL, rather than the internal code, for report readability.
- Data Maintenance: Administrators may query this table to verify or audit the availability of translations for all active print forms across supported installation languages.
Related Objects
This translation table is intrinsically linked to its base table, which is almost certainly named OKE_PRINT_FORMS_B. The 'B' suffix denotes a base table, while 'TL' denotes a translation table, a standard Oracle Applications convention. The base table holds the non-translatable, language-independent attributes of the print form definition. The application's public application programming interfaces (APIs) for the Project Contracts module will reference the codes stored in PRINT_FORM_CODE. Furthermore, the table is referenced by any EBS form or program that presents a list of print forms to the user, such as the document generation processes within the Contract Authoring workbench.
-
Table: OKE_PRINT_FORMS_TL
12.2.2
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_PRINT_FORMS_TL, object_name:OKE_PRINT_FORMS_TL, status:VALID, product: OKE - Project Contracts , description: Print form multi-lingual information , implementation_dba_data: OKE.OKE_PRINT_FORMS_TL ,
-
Table: OKE_PRINT_FORMS_TL
12.1.1
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_PRINT_FORMS_TL, object_name:OKE_PRINT_FORMS_TL, status:VALID, product: OKE - Project Contracts , description: Print form multi-lingual information , implementation_dba_data: OKE.OKE_PRINT_FORMS_TL ,
-
eTRM - OKE Tables and Views
12.2.2
description: This table stores the version comparison results. ,
-
eTRM - OKE Tables and Views
12.1.1
description: This table stores the version comparison results. ,
-
eTRM - OKE Tables and Views
12.1.1
description: This table stores the version comparison results. ,
-
eTRM - OKE Tables and Views
12.2.2
description: This table stores the version comparison results. ,