P_CnsldtnProjectT
P_CnsldtnProjectT is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnAddlMD, I_Project) and exposes 7 fields with key fields Language, Project, 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 | PCSPROJECTT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | Project | Project | ||
| AdditionalMasterDataSource | ||||
| LanguageasLanguage | ||||
| KEY | Project | AdditionalMasterDataCode | ||
| AdditionalMasterDataSource | ||||
| AdditionalMasterDataText | _Text | AdditionalMasterDataText |
@AbapCatalog.sqlViewName: 'PCSPROJECTT'
@VDM.viewType: #BASIC
@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #L
}
define view P_CnsldtnProjectT
as
select from I_Project
{
key cast ( $session.system_language as spras ) as Language,
key Project,
cast ( 'ACCTG' as fincs_md_source ) as AdditionalMasterDataSource,
ProjectDescription as AdditionalMasterDataText
}
union all select from I_CnsldtnAddlMD
{
key _Text.Language as Language,
key AdditionalMasterDataCode as Project,
cast ( 'CNSLDTN' as fincs_md_source ) as AdditionalMasterDataSource,
_Text.AdditionalMasterDataText as AdditionalMasterDataText
}
where
AdditionalCharcFieldName = 'PS_PSPID'
and AdditionalMasterDataCode <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNADDLMD",
"I_CNSLDTNADDLMDT",
"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