I_ProjectProfileCode
Project Profile Code
I_ProjectProfileCode is a Basic CDS View (Dimension) that provides data about "Project Profile Code" in SAP S/4HANA. It reads from 1 data source (tcj41) and exposes 2 fields with key field ProjectProfileCode. It has 1 association to related views. Part of development package VDM_PS_ST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcj41 | tcj41 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ProjectProfileCodeText | _Text | $projection.ProjectProfileCode = _Text.ProjectProfileCode |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PROJ_PROF_CODE | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.representativeKey | ProjectProfileCode | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.sapObjectNodeType.name | ProjectProfileCode | view | |
| EndUserText.label | Project Profile Code | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectProfileCode | profidproj | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'PROJ_PROF_CODE'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction.enabled: true,
internalName: #LOCAL
}
@ObjectModel: {
representativeKey: 'ProjectProfileCode',
supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE, #ANALYTICAL_DIMENSION ],
usageType: {
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S
},
//CE2202 CODELISTS SONT name for 'ProjectProfileCode'
sapObjectNodeType.name: 'ProjectProfileCode'
}
@EndUserText.label: 'Project Profile Code'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations:true
define view I_ProjectProfileCode
as select from tcj41
association [0..*] to I_ProjectProfileCodeText as _Text on $projection.ProjectProfileCode = _Text.ProjectProfileCode
{
@ObjectModel.text.association: '_Text'
key profidproj as ProjectProfileCode,
_Text // Make association public
};
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