A_ClfnCharcRefForKeyDate
Characteristic References
A_ClfnCharcRefForKeyDate is a Consumption CDS View that provides data about "Characteristic References" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcRefForKeyDateTP) and exposes 6 fields with key fields CharcInternalID, CharcReferenceTable, CharcReferenceTableField.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnCharcRefForKeyDateTP | I_ClfnCharcRefForKeyDateTP | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Characteristic References | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Consumption.filter.businessDate.at | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CharcInternalID | CharacteristicRef | CharcInternalID | |
| KEY | CharcReferenceTable | CharacteristicRef | CharcReferenceTable | |
| KEY | CharcReferenceTableField | CharacteristicRef | CharcReferenceTableField | |
| KeyDate | ||||
| CharcLastChangedDateTime | CharacteristicRef | CharcLastChangedDateTime | ||
| _Characteristic | _Characteristic |
//@ClientHandling.algorithm: #SESSION_VARIABLE
//@AbapCatalog.sqlViewName: 'ANGCCHR03'
//@AbapCatalog.compiler.compareFilter: true
//@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Characteristic References'
//@VDM.viewType: #COMPOSITE
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@Consumption.filter.businessDate.at: true
define view entity A_ClfnCharcRefForKeyDate
with parameters
@Semantics.businessDate.at: true
@Consumption.hidden: true
P_KeyDate :sydate
as select from I_ClfnCharcRefForKeyDateTP( P_KeyDate:$parameters.P_KeyDate ) as CharacteristicRef
association to parent A_ClfnCharacteristicForKeyDate as _Characteristic
on $projection.CharcInternalID = _Characteristic.CharcInternalID
{
key CharacteristicRef.CharcInternalID,
key CharacteristicRef.CharcReferenceTable,
key CharacteristicRef.CharcReferenceTableField,
// @ObjectModel.readOnly: true
$parameters.P_KeyDate as KeyDate,
// @ObjectModel.readOnly: true
CharacteristicRef.CharcLastChangedDateTime,
_Characteristic
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CLFNCHARCREFFORKEYDATETP"
],
"ASSOCIATED":
[
"A_CLFNCHARACTERISTICFORKEYDATE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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