I_ClfnCharcDescForKeyDate
Description of Clfn Charc for Key Date
I_ClfnCharcDescForKeyDate is a Composite CDS View that provides data about "Description of Clfn Charc for Key Date" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcDesc) and exposes 8 fields with key fields CharcInternalID, Language. It has 1 association to related views. Part of development package NGC_CORE_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnCharcDesc | CharcDesc | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ClfnCharacteristicForKeyDate | _Characteristic | $projection.CharcInternalID = _Characteristic.CharcInternalID |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | INGCCHR12_2 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Description of Clfn Charc for Key Date | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CharcInternalID | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CharcInternalID | I_ClfnCharcDesc | CharcInternalID | |
| KEY | Language | I_ClfnCharcDesc | Language | |
| CharcDescription | I_ClfnCharcDesc | CharcDescription | ||
| ChangeNumber | I_ClfnCharcDesc | ChangeNumber | ||
| ValidityStartDate | I_ClfnCharcDesc | ValidityStartDate | ||
| ValidityEndDate | I_ClfnCharcDesc | ValidityEndDate | ||
| _Language | _Language | |||
| _Characteristic | _Characteristic |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'INGCCHR12_2'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Description of Clfn Charc for Key Date'
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CharcInternalID'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities:
[ #LANGUAGE_DEPENDENT_TEXT,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE ]
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_ClfnCharcDescForKeyDate
with parameters
@Consumption.hidden: true
@Environment.systemField: #SYSTEM_DATE
P_KeyDate : sydate
as select from I_ClfnCharcDesc as CharcDesc
association [1..1] to I_ClfnCharacteristicForKeyDate as _Characteristic
on $projection.CharcInternalID = _Characteristic.CharcInternalID
{
key CharcDesc.CharcInternalID,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key CharcDesc.Language,
@Semantics.text: true
CharcDesc.CharcDescription,
CharcDesc.ChangeNumber,
@Semantics.businessDate.from: true
CharcDesc.ValidityStartDate,
@Semantics.businessDate.to: true
CharcDesc.ValidityEndDate,
_Language,
_Characteristic
}
where CharcDesc.ValidityStartDate <= $parameters.P_KeyDate
and CharcDesc.ValidityEndDate >= $parameters.P_KeyDate
and CharcDesc.IsDeleted = ''
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