C_CustomerProjectVH
Customer Project Value Help
C_CustomerProjectVH is a Consumption CDS View that provides data about "Customer Project Value Help" in SAP S/4HANA. It reads from 1 data source (I_CustomerProject) and exposes 13 fields with key field CustomerProject. It has 2 associations to related views. Part of development package CPD_CDS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CustomerProject | I_CustomerProject | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_EngagementProject | _EngagementProject | $projection.CustomerProject = _EngagementProject.EngagementProject |
| [1..*] | I_PersnWrkAgreementDet | _PersonWorkAgreement | $projection.EmploymentInternalID = _PersonWorkAgreement.PersonWorkAgreement |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | CCUSTPROJVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | CustomerProject | view | |
| EndUserText.label | Customer Project Value Help | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Consumption.valueHelpDefault.fetchValues | #AUTOMATICALLY_WHEN_DISPLAYED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerProject | I_CustomerProject | CustomerProject | |
| CustomerProjectName | I_CustomerProject | CustomerProjectName | ||
| EmploymentInternalID | I_CustomerProject | CustProjMgrPersonnelNumber | ||
| CustomerProjectManagerName | ||||
| CustomerProjectServiceOrg | I_CustomerProject | CustomerProjectServiceOrg | ||
| CustomerProjectVisibility | I_CustomerProject | CustomerProjectVisibility | ||
| ProjectProfileCode | I_CustomerProject | ProjectProfileCode | ||
| EngmntProjectHeaderCompanyCode | I_CustomerProject | EngmntProjectHeaderCompanyCode | ||
| EngagementProjectCostCenter | I_CustomerProject | CostCenter | ||
| ProfitCenter | I_CustomerProject | ProfitCenter | ||
| IsMyProject | ||||
| _EngagementProject | _EngagementProject | |||
| _PersonWorkAgreement | _PersonWorkAgreement |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'CCUSTPROJVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'CustomerProject'
@EndUserText.label: 'Customer Project Value Help'
@Search.searchable: true
@Consumption.ranked: true
@Consumption.valueHelpDefault.fetchValues: #AUTOMATICALLY_WHEN_DISPLAYED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MIXED
@AccessControl.personalData.blocking: #NOT_REQUIRED
define view C_CustomerProjectVH
as select from I_CustomerProject
association [1..1] to I_EngagementProject as _EngagementProject on $projection.CustomerProject = _EngagementProject.EngagementProject
association [1..*] to I_PersnWrkAgreementDet as _PersonWorkAgreement on $projection.EmploymentInternalID = _PersonWorkAgreement.PersonWorkAgreement
{
@ObjectModel.text.element: 'CustomerProjectName'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key I_CustomerProject.CustomerProject as CustomerProject,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
I_CustomerProject.CustomerProjectName as CustomerProjectName,
@UI.hidden: true
I_CustomerProject.CustProjMgrPersonnelNumber as EmploymentInternalID,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast(_PersonWorkAgreement._WorkforcePerson.PersonFullName as /cpd/proj_manager_name preserving type ) as CustomerProjectManagerName,
@Consumption.hidden: true
I_CustomerProject.CustomerProjectServiceOrg,
@Consumption.hidden: true
I_CustomerProject.CustomerProjectVisibility,
@Consumption.hidden: true
I_CustomerProject.ProjectProfileCode,
@Consumption.hidden: true
I_CustomerProject.EngmntProjectHeaderCompanyCode,
@Consumption.hidden: true
I_CustomerProject.CostCenter as EngagementProjectCostCenter,
@Consumption.hidden: true
I_CustomerProject.ProfitCenter,
@Consumption.hidden:true
I_CustomerProject._UserInvlmnt.IsMyProject,
//Exposing Association For DCL
_EngagementProject,
_PersonWorkAgreement
}
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