Search Results cs_kb_element_types_vl
Overview
CS_KB_ELEMENT_TYPES_VL is a multlingual (VL) view owned by the APPS schema in Oracle E-Business Suite, belonging to the CS (Service) product family. It exposes knowledge base element type definitions used by Oracle Knowledge Base and related Service modules. Because the underlying data is stored using the Oracle multi-language architecture — a base table holding language-independent attributes and a translation table holding language-dependent text — the VL view joins the two and filters translations by the session language so that consumers see records in their own locale.
The view is defined as a reporting and integration-friendly interface rather than a transactional entry point. It presents element type identity, descriptive text, descriptive flexfield segments, and date-range activation controls in a single flattened row, allowing concurrent programs, Discoverer workbooks, OAF/Forms lookups, and external integrations to resolve element type names without issuing separate joins against the base and translation tables. All access is read-oriented, and the view inherits the standard EBS "WHO" audit columns from the base table.
Underlying Base Objects
The documented ETRM metadata states the view is constructed over two referenced base objects, both exposed as synonyms in the APPS schema:
- CS_KB_ELEMENT_TYPES_B — the base (language-independent) table. It supplies ELEMENT_TYPE_ID, ELEMENT_TYPE_NAME, the WHO audit columns, the fifteen attribute columns, and the effective dating columns START_DATE_ACTIVE and END_DATE_ACTIVE.
- CS_KB_ELEMENT_TYPES_TL — the translation table. It supplies NAME and DESCRIPTION for a given LANGUAGE.
The join is performed on ELEMENT_TYPE_ID, with the translation side restricted by T.LANGUAGE = USERENV('LANG'). This is the standard seeded VL pattern: one row per base entity, resolved to the translation matching the current runtime language. Because USERENV('LANG') returns the session-level language code, the same row identifier can return different NAME and DESCRIPTION values depending on the language environment of the connecting user.
Key Columns
- ROW_ID — the ROWID of the base table row; useful for direct row access and debugging.
- ELEMENT_TYPE_ID — primary key and foreign key target; the join key between base and translation records.
- ELEMENT_TYPE_NAME — the internal, untranslated name carried on the base table; typically used programmatically.
- NAME — the translated display name from the TL table in the session language.
- DESCRIPTION — the translated long description from the TL table.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard EBS audit (WHO) columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield segments available for customer-defined element type metadata.
- START_DATE_ACTIVE, END_DATE_ACTIVE — effective dating range controlling whether an element type is considered active at a point in time.
Common Use Cases and Queries
Typical uses include populating LOVs and list pages in Service and Knowledge Base extensions, joining element type names to knowledge article or solution data for reporting, and validating that expected element types exist and are within their active date range. A basic listing query is shown below:
SELECT element_type_id,
element_type_name,
name,
description,
start_date_active,
end_date_active
FROM apps.cs_kb_element_types_vl
WHERE TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE)
AND NVL(end_date_active, SYSDATE + 1)
ORDER BY name;
To resolve a stored element type id to its display text in the current session language:
SELECT v.name
FROM apps.cs_kb_element_types_vl v
WHERE v.element_type_id = :p_element_type_id;
Because the view applies the USERENV('LANG') filter internally, callers should not add their own LANGUAGE predicate; doing so is unnecessary and can suppress rows if the requested language lacks an installed translation. For reporting that must be language-independent, query CS_KB_ELEMENT_TYPES_B directly and reserve the VL view for user-facing output.
-
View: CS_KB_ELEMENT_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENT_TYPES_VL, object_name:CS_KB_ELEMENT_TYPES_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_KB_ELEMENT_TYPES_B and CS_KB_ELEMENT_TYPES_TL tables. , implementation_dba_data: APPS.CS_KB_ELEMENT_TYPES_VL ,
-
View: CS_KB_ELEMENT_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENT_TYPES_VL, object_name:CS_KB_ELEMENT_TYPES_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_KB_ELEMENT_TYPES_B and CS_KB_ELEMENT_TYPES_TL tables. , implementation_dba_data: APPS.CS_KB_ELEMENT_TYPES_VL ,
-
VIEW: APPS.CS_KB_ELEMENTS_V
12.2.2
-
VIEW: APPS.CSD_KB_LINKS_V
12.2.2
-
VIEW: APPS.CS_KB_ELEMENTS_V
12.1.1
-
VIEW: APPS.CSD_KB_LINKS_V
12.1.1
-
View: CS_KB_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENTS_V, object_name:CS_KB_ELEMENTS_V, status:VALID, product: CS - Service , description: A view on top of CS_KB_ELEMENTS_VL and CS_KB_ELEMENT_TYPES_VL. , implementation_dba_data: APPS.CS_KB_ELEMENTS_V ,
-
View: CS_KB_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENTS_V, object_name:CS_KB_ELEMENTS_V, status:VALID, product: CS - Service , description: A view on top of CS_KB_ELEMENTS_VL and CS_KB_ELEMENT_TYPES_VL. , implementation_dba_data: APPS.CS_KB_ELEMENTS_V ,
-
View: CSD_KB_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_KB_LINKS_V, object_name:CSD_KB_LINKS_V, status:VALID, product: CSD - Depot Repair , description: Views that gets all the solutions from Knowledge Base. , implementation_dba_data: APPS.CSD_KB_LINKS_V ,
-
View: CSD_KB_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_KB_LINKS_V, object_name:CSD_KB_LINKS_V, status:VALID, product: CSD - Depot Repair , description: Views that gets all the solutions from Knowledge Base. , implementation_dba_data: APPS.CSD_KB_LINKS_V ,
-
SYNONYM: APPS.CS_KB_ELEMENT_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_KB_ELEMENT_TYPES_TL, status:VALID,
-
SYNONYM: APPS.CS_KB_ELEMENT_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_KB_ELEMENT_TYPES_B, status:VALID,
-
SYNONYM: APPS.CS_KB_ELEMENT_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_KB_ELEMENT_TYPES_TL, status:VALID,
-
SYNONYM: APPS.CS_KB_ELEMENT_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_KB_ELEMENT_TYPES_B, status:VALID,
-
PACKAGE BODY: APPS.CS_KNOWLEDGE_AUDIT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_KNOWLEDGE_AUDIT_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_KNOWLEDGE_AUDIT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_KNOWLEDGE_AUDIT_PVT, status:VALID,
-
VIEW: APPS.CSD_KB_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_KB_LINKS_V, object_name:CSD_KB_LINKS_V, status:VALID,
-
VIEW: APPS.CSD_KB_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_KB_LINKS_V, object_name:CSD_KB_LINKS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CS_KB_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENTS_V, object_name:CS_KB_ELEMENTS_V, status:VALID,
-
VIEW: APPS.CS_KB_ELEMENT_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENT_TYPES_VL, object_name:CS_KB_ELEMENT_TYPES_VL, status:VALID,
-
VIEW: APPS.CS_KB_ELEMENT_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENT_TYPES_VL, object_name:CS_KB_ELEMENT_TYPES_VL, status:VALID,
-
VIEW: APPS.CS_KB_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_ELEMENTS_V, object_name:CS_KB_ELEMENTS_V, status:VALID,
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_ELEMENT_TYPES_VL
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_ELEMENT_TYPES_VL
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT SQL Statements
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT SQL Statements
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_ELE_TYPES
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_ELE_TYPES
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_LOOKUPS
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_LOOKUPS
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_ELEMENTS_TL
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_ELEMENTS_TL
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_ELES
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_ELES
12.2.2
-
eTRM - CSD Tables and Views
12.2.2
description: Transaction table for the High Volume Repair module. ,
-
PACKAGE BODY: APPS.CS_KNOWLEDGE_AUDIT_PVT
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_ELEMENTS_B
12.2.2
-
PACKAGE BODY: APPS.CS_KNOWLEDGE_AUDIT_PVT
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_ELEMENTS_B
12.1.1
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
eTRM - CSD Tables and Views
12.2.2
description: Transaction table for the High Volume Repair module. ,