P_CharcCtlgClfnCValueDesc
Charac Catalog Classification Charac Value Descriptions
P_CharcCtlgClfnCValueDesc is a Composite CDS View that provides data about "Charac Catalog Classification Charac Value Descriptions" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcValueDesc) and exposes 4 fields. Part of development package PROD_ALLOC_CHARC_CATALOG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnCharcValueDesc | descr | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CharcInternalID | value | CharcInternalID | ||
| CharcValue | value | CharcValue | ||
| IsDeleted | value | IsDeleted | ||
| CharcValueDescription | I_ClfnCharcValueDesc | CharcValueDescription |
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass:#MASTER
define view entity P_CharcCtlgClfnCValueDesc
as select from I_ClfnCharcValueDesc as descr
join P_CharcCtlgClfnCValueInclDel1 as value on value.CharcInternalID = descr.CharcInternalID
and value.CharcValuePositionNumber = descr.CharcValuePositionNumber
{
value.CharcInternalID,
value.CharcValue,
value.IsDeleted,
descr.CharcValueDescription
}
where
value.IsDeleted = descr.IsDeleted
and descr.Language = $session.system_language
and(
(
value.ValidityStartDate <= $session.system_date
and descr.ValidityEndDate >= $session.system_date
and descr.ValidityStartDate <= $session.system_date
)
or(
value.ValidityStartDate > $session.system_date
and descr.ValidityEndDate >= value.ValidityStartDate
and descr.ValidityStartDate <= value.ValidityStartDate
)
)
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