R_ClfnClassDescriptionTP
Classification Class Description - TP
R_ClfnClassDescriptionTP is a Transactional CDS View that provides data about "Classification Class Description - TP" in SAP S/4HANA. It reads from 2 data sources (I_ClfnClass, I_ClfnClassDescription) and exposes 8 fields with key fields Class, ClassType, Language. It has 1 association to related views. Part of development package NGC_CORE_VDM.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnClass | Class | from |
| I_ClfnClassDescription | Description | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Classification Class Description - TP | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #TRANSACTIONAL | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Class | I_ClfnClass | Class | |
| KEY | ClassType | I_ClfnClass | ClassType | |
| KEY | Language | I_ClfnClassDescription | Language | |
| ClassInternalID | I_ClfnClassDescription | ClassInternalID | ||
| ClassDescription | I_ClfnClassDescription | ClassDescription | ||
| LastChangeDateTime | I_ClfnClass | ClassLastChangedDateTime | ||
| _Parent | _Parent | |||
| _Language | _Language |
@EndUserText.label: 'Classification Class Description - TP'
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #M, dataClass: #MASTER}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #TRANSACTIONAL
define view entity R_ClfnClassDescriptionTP
as select from I_ClfnClass as Class
inner join I_ClfnClassDescription as Description
on Description.ClassInternalID = Class.ClassInternalID
association to parent R_ClfnClassTP as _Parent on
$projection.Class = _Parent.Class and
$projection.ClassType = _Parent.ClassType
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
key Class.Class,
key Class.ClassType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key Description.Language,
Description.ClassInternalID,
@Semantics.text: true
Description.ClassDescription,
Class.ClassLastChangedDateTime as LastChangeDateTime,
@ObjectModel.filter.enabled: false
@ObjectModel.sort.enabled: false
_Parent,
_Language
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA