P_BasicDescForReldRglnMaxCRR
Basic Description For Reld Reg Max Compl Requirment Results
P_BasicDescForReldRglnMaxCRR is a Composite CDS View that provides data about "Basic Description For Reld Reg Max Compl Requirment Results" in SAP S/4HANA. It reads from 2 data sources (I_CmplRqRslt, I_CmplRqRsltDngrsGdsBscDescT) and exposes 2 fields with key fields ChmlCmplncInfoUUID, CmplRqRsltUUID. Part of development package EHDGM_CNS_UNPACKAGED_PRODUCT.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CmplRqRslt | I_CmplRqRslt | inner |
| I_CmplRqRsltDngrsGdsBscDescT | I_CmplRqRsltDngrsGdsBscDescT | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PDGBDSCFRRMCRR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCmplncInfoUUID | I_CmplRqRslt | ChmlCmplncInfoUUID | |
| KEY | CmplRqRsltUUID |
@AbapCatalog:{
sqlViewName: 'PDGBDSCFRRMCRR',
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
serviceQuality: #C,
sizeCategory: #L,
dataClass: #MIXED
}
}
@VDM: {
private: true,
viewType: #COMPOSITE
}
define view P_BasicDescForReldRglnMaxCRR
as select from I_CmplRqRsltDngrsGdsBscDescT
inner join I_CmplRqRslt on I_CmplRqRsltDngrsGdsBscDescT.CmplRqRsltUUID = I_CmplRqRslt.CmplRqRsltUUID
and I_CmplRqRslt.CmplRqRsltProcessingStatus = 'RE'
{
key I_CmplRqRslt.ChmlCmplncInfoUUID,
key max( I_CmplRqRslt.CmplRqRsltUUID ) as CmplRqRsltUUID
}
where I_CmplRqRsltDngrsGdsBscDescT.Language = 'E'
group by I_CmplRqRslt.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