P_CnsldtnProject
P_CnsldtnProject is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnAddlMD, I_Project) and exposes 6 fields with key field Project.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnAddlMD | I_CnsldtnAddlMD | union_all |
| I_Project | I_Project | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCSPROJECT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Project | Project | ||
| AdditionalMasterDataSource | ||||
| IsTimeDependent | ||||
| AdditionalMasterDataSource | ||||
| IsTimeDependent | ||||
| AdditionalMDHasSuprordField |
@AbapCatalog.sqlViewName: 'PCSPROJECT'
@VDM.viewType: #BASIC
@VDM.private:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B ,
sizeCategory: #L
}
define view P_CnsldtnProject
as
select from I_Project
{
key Project,
cast ( 'ACCTG' as fincs_md_source ) as AdditionalMasterDataSource,
cast ( '' as as4flag ) as IsTimeDependent,
cast ( '' as as4flag ) as AdditionalMDHasSuprordField
}
union all select from I_CnsldtnAddlMD
{
key AdditionalMasterDataCode as Project,
cast ( 'CNSLDTN' as fincs_md_source ) as AdditionalMasterDataSource,
cast ( '' as as4flag ) as IsTimeDependent,
cast ( '' as as4flag ) as AdditionalMDHasSuprordField
}
where
AdditionalCharcFieldName = 'PS_PSPID' and AdditionalMasterDataCode <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNADDLMD",
"I_PROJECT"
],
"ASSOCIATED":
[],
"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