I_PPM_ProjectType
Project Type
I_PPM_ProjectType is a Basic CDS View that provides data about "Project Type" in SAP S/4HANA. It reads from 1 data source (dpr_pro_type) and exposes 5 fields with key field ProjectType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dpr_pro_type | ProjectType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PPM_ProTypeText | _Text | _Text.ProjectType = $projection.ProjectType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMPROTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Project Type | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| ObjectModel.representativeKey | ProjectType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectType | dpr_pro_type | pro_type | |
| AccountingIntegrationCode | dpr_pro_type | repl_allowed | ||
| ProjectCategory | dpr_pro_type | pro_category | ||
| ProjectProfileCode | dpr_pro_type | profidproj | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPPMPROTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
//@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Project Type'
@VDM.viewType: #BASIC
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.buffering.status: #ACTIVE
@ObjectModel.representativeKey: 'ProjectType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_ProjectType as select from dpr_pro_type as ProjectType
association [0..*] to I_PPM_ProTypeText as _Text on _Text.ProjectType = $projection.ProjectType
{
@ObjectModel.text.association: '_Text'
key ProjectType.pro_type as ProjectType,
ProjectType.repl_allowed as AccountingIntegrationCode,
// ProjectType.pro_category as ProjectTypeCategory,
ProjectType.pro_category as ProjectCategory,
ProjectType.profidproj as ProjectProfileCode,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DPR_PRO_TYPE"
],
"ASSOCIATED":
[
"I_PPM_PROTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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