I_ProdnVersConstcyLogCount
Production Version Consistency Log Count
I_ProdnVersConstcyLogCount is a Composite CDS View that provides data about "Production Version Consistency Log Count" in SAP S/4HANA. It has 1 association to related views.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ProductionVersionConstcyLog | _ConstcyLog | $projection.Material = _ConstcyLog.Material and $projection.Plant = _ConstcyLog.Plant and $projection.ProductionVersion = _ConstcyLog.ProductionVersion |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Production Version Consistency Log Count | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Material | Material | ||
| KEY | Plant | Plant | ||
| KEY | ProductionVersion | ProductionVersion | ||
| KEY | ProdnVersConstcyIssSvrtyLvl | ProdnVersConstcyIssSvrtyLvl | ||
| NumberOfProdnVersConstcyIssue | ||||
| _ConstcyLog | _ConstcyLog |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Production Version Consistency Log Count'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
define view entity I_ProdnVersConstcyLogCount
as select distinct from I_ProductionVersionConstcyLog
association [1..*] to I_ProductionVersionConstcyLog as _ConstcyLog on $projection.Material = _ConstcyLog.Material
and $projection.Plant = _ConstcyLog.Plant
and $projection.ProductionVersion = _ConstcyLog.ProductionVersion
{
key Material,
key Plant,
key ProductionVersion,
key ProdnVersConstcyIssSvrtyLvl,
count(*) as NumberOfProdnVersConstcyIssue,
/*Association*/
_ConstcyLog
}
group by
Material,
Plant,
ProductionVersion,
ProdnVersConstcyIssSvrtyLvl
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