P_ChmlCmplncInfoCmpstnLastDate
CCI Composition Last Date
P_ChmlCmplncInfoCmpstnLastDate is a Consumption CDS View that provides data about "CCI Composition Last Date" in SAP S/4HANA. It reads from 2 data sources (I_ChmlCmplncInfo, I_ChmlComposition) and exposes 3 fields with key field ChmlCompositionType.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ChmlCmplncInfo | ChmlCmplncInfo | inner |
| I_ChmlComposition | ChmlCmplncInfoComposition | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCCICOMPLD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | CCI Composition Last Date | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCompositionType | I_ChmlComposition | ChmlCompositionType | |
| ChmlCmplncInfoUUID | I_ChmlCmplncInfo | ChmlCmplncInfoUUID | ||
| LastChangeUTCDateTime |
@AbapCatalog: {
sqlViewName: 'PCCICOMPLD',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@VDM.private: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'CCI Composition Last Date'
define view P_ChmlCmplncInfoCmpstnLastDate
as select from I_ChmlComposition as ChmlCmplncInfoComposition
inner join I_ChmlCmplncInfo as ChmlCmplncInfo on ChmlCmplncInfo.ChmlCmplncInfoUUID = ChmlCmplncInfoComposition.ChmlCmplncInfoUUID
{
key ChmlCmplncInfoComposition.ChmlCompositionType as ChmlCompositionType,
ChmlCmplncInfo.ChmlCmplncInfoUUID as ChmlCmplncInfoUUID,
max(ChmlCmplncInfoComposition.LastChangeUTCDateTime) as LastChangeUTCDateTime
}
group by
ChmlCmplncInfoComposition.ChmlCompositionType,
ChmlCmplncInfo.ChmlCmplncInfoUUID
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