Search Results ibc_citem_versions_tl
Overview
The IBC_CITEM_VERSIONS_TL table is a core data object within the Oracle E-Business Suite Content Manager (IBC) module for versions 12.1.1 and 12.2.2. It functions as a translation table, storing language-specific (or "language-striped") information for content item versions. Its primary role is to support the multilingual capabilities of the application by holding the translated text for version attributes, such as titles and descriptions, while the base transactional data resides in the related IBC_CITEM_VERSIONS_B table. This design is a standard Oracle EBS pattern for enabling global deployments.
Key Information Stored
The table's structure is designed to manage translated content per language. Its primary key is a composite of CITEM_VERSION_ID and LANGUAGE, ensuring a unique record for each version and language combination. While the specific column list is not fully detailed in the provided metadata, typical translation table columns include SOURCE_LANG, along with translatable attributes like TITLE and DESCRIPTION. Critically, the table also includes foreign key relationships to FND_LOBS for ATTACHMENT_FILE_ID and ATTRIBUTE_FILE_ID, indicating it stores references to translated binary files (like documents or style sheets) associated with a content version. This links translated metadata to the actual multilingual content files.
Common Use Cases and Queries
This table is central to any process involving the display or reporting of content item versions in a user's session language. Common operational and reporting scenarios include retrieving all translations for a specific content version for administrative review, or fetching the version title in the current session language for UI display. A typical query pattern joins this table with its base table and filters on the LANGUAGE column.
- Retrieve Translated Version Details:
SELECT tl.title, tl.description FROM ibc_citem_versions_tl tl, ibc_citem_versions_b b WHERE b.citem_version_id = tl.citem_version_id AND tl.language = USERENV('LANG') AND b.citem_id = :p_citem_id; - Audit All Translations for a Version:
SELECT language, source_lang, title FROM ibc_citem_versions_tl WHERE citem_version_id = :p_version_id ORDER BY language;
Related Objects
IBC_CITEM_VERSIONS_TL has integral relationships with several key EBS objects. Its defining relationship is with IBC_CITEM_VERSIONS_B, the base table from which it inherits the CITEM_VERSION_ID. It also has two foreign key dependencies on FND_LOBS to manage translated attachment and attribute files. Furthermore, the table is referenced by the PRP_COMP_STYLE_CTNTVERS object, suggesting its use in personalized style or component functionality within the content management framework. For programmatic access, developers typically use the standard IBC Content Manager APIs rather than direct DML on this table.
-
Table: IBC_CITEM_VERSIONS_TL
12.1.1
owner:IBC, object_type:TABLE, fnd_design_data:IBC.IBC_CITEM_VERSIONS_TL, object_name:IBC_CITEM_VERSIONS_TL, status:VALID, product: IBC - Content Manager , description: IBC_CITEM_VERSIONS_TL stores language striped information about content item versions defined in IBC_CITEM_VERSIONS_B. , implementation_dba_data: IBC.IBC_CITEM_VERSIONS_TL ,
-
Table: IBC_CITEM_VERSIONS_TL
12.2.2
owner:IBC, object_type:TABLE, fnd_design_data:IBC.IBC_CITEM_VERSIONS_TL, object_name:IBC_CITEM_VERSIONS_TL, status:VALID, product: IBC - Content Manager , description: IBC_CITEM_VERSIONS_TL stores language striped information about content item versions defined in IBC_CITEM_VERSIONS_B. , implementation_dba_data: IBC.IBC_CITEM_VERSIONS_TL ,
-
APPS.IBC_RENDITIONS_PKG dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_CITEM_PREVIEW_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_UTILITIES_GRP dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_CONTENT_CTX_PKG dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_RUNTIME_PUB dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_WORKFLOW_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_UTILITIES_GRP dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_VALIDATE_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_RUNTIME_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_PREVIEW_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_ADMIN_GRP dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_RUNTIME_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_CITEM_ADMIN_GRP dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_CITEM_RUNTIME_PUB dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_CONTENT_CTX_PKG dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.AMS_CPAGEUTILITY_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_WORKFLOW_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_RENDITIONS_PKG dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_UTILITIES_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IGS_CO_GEN_004 dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBE_M_IBC_INT_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_UTILITIES_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_VALIDATE_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.AMS_CPAGEUTILITY_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on IBC_CITEM_VERSIONS_TL
12.2.2
-
APPS.IBE_M_IBC_INT_PVT dependencies on IBC_CITEM_VERSIONS_TL
12.1.1
-
APPS.IBC_CITEM_VERSIONS_PKG SQL Statements
12.1.1
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on FND_LOBS
12.2.2
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on FND_LOBS
12.1.1
-
APPS.IBE_M_IBC_INT_PVT dependencies on FND_LANGUAGES_VL
12.1.1
-
APPS.IBC_CITEM_RUNTIME_PVT SQL Statements
12.2.2
-
APPS.IBC_CITEM_VERSIONS_PKG SQL Statements
12.2.2
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.IBE_M_IBC_INT_PVT dependencies on FND_LANGUAGES_VL
12.2.2
-
VIEW: IBC.IBC_CITEM_VERSIONS_TL#
12.2.2
owner:IBC, object_type:VIEW, object_name:IBC_CITEM_VERSIONS_TL#, status:VALID,
-
APPS.IBC_CITEM_RUNTIME_PVT SQL Statements
12.1.1
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on FND_LANGUAGES
12.2.2
-
Table: FND_LOBS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOBS, object_name:FND_LOBS, status:VALID, product: FND - Application Object Library , description: LOBs being managed by the Generic File Manager , implementation_dba_data: APPLSYS.FND_LOBS ,
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on FND_LOBS_S
12.2.2
-
APPS.IBC_CITEM_VERSIONS_PKG dependencies on FND_LOBS_S
12.1.1
-
APPS.IBC_UTILITIES_GRP dependencies on IBC_CITEM_VERSIONS_B
12.1.1
-
SYNONYM: APPS.IBC_CITEM_VERSIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBC_CITEM_VERSIONS_TL, status:VALID,
-
VIEW: APPS.IBC_CITEM_LIVE_V
12.2.2
-
APPS.IBC_UTILITIES_GRP SQL Statements
12.1.1
-
APPS.IBC_CITEM_RUNTIME_PVT dependencies on IBC_CONTENT_ITEMS
12.1.1
-
Table: FND_LOBS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOBS, object_name:FND_LOBS, status:VALID, product: FND - Application Object Library , description: LOBs being managed by the Generic File Manager , implementation_dba_data: APPLSYS.FND_LOBS ,
-
APPS.IBC_CITEM_RUNTIME_PVT dependencies on IBC_CONTENT_ITEMS
12.2.2