I_ClfnCharcReference
Reference of Clfn Characteristic
I_ClfnCharcReference is a Basic CDS View that provides data about "Reference of Clfn Characteristic" in SAP S/4HANA. It reads from 2 data sources (cabn, cabnz) and exposes 4 fields with key fields CharcInternalID, CharcReferenceTable, CharcReferenceTable, CharcReferenceTableField. Part of development package NGC_CORE_VDM.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | INGCCHR15 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Reference of Clfn Characteristic | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'INGCCHR15'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Reference of Clfn Characteristic'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
define view I_ClfnCharcReference as select from cabnz as CharcReference
{
key cast ( CharcReference.atinn as atinn_no_conv preserving type ) as CharcInternalID,
key CharcReference.attab as CharcReferenceTable,
key CharcReference.atfel as CharcReferenceTableField
}
union
select from cabn as Characteristic
{
key cast ( Characteristic.atinn as atinn_no_conv preserving type ) as CharcInternalID,
key Characteristic.attab as CharcReferenceTable,
key Characteristic.atfel as CharcReferenceTableField
}
where
Characteristic.attab <> '' and
Characteristic.atfel <> ''
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