I_ProjectValueHelp
Project Definition Value Help
I_ProjectValueHelp is a Composite CDS View that provides data about "Project Definition Value Help" in SAP S/4HANA. It reads from 1 data source (I_Project) and exposes 9 fields with key field Project. Part of development package VDM_PS_ST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Project | Project | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPROJECTVH | view | |
| EndUserText.label | Project Definition Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Project | I_Project | Project | |
| ProjectDescription | I_Project | ProjectDescription | ||
| ResponsiblePerson | I_Project | ResponsiblePerson | ||
| ResponsiblePersonName | I_Project | ResponsiblePersonName | ||
| ProfitCenter | I_Project | ProfitCenter | ||
| ControllingArea | I_Project | ControllingArea | ||
| _ResponsiblePerson | I_Project | _ResponsiblePerson | ||
| ApplicantCode | I_Project | ApplicantCode | ||
| _ProjectApplicant | I_Project | _ProjectApplicant |
@AbapCatalog.sqlViewName: 'IPROJECTVH'
@EndUserText.label: 'Project Definition Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #COMPOSITE
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_ProjectValueHelp
as select from I_Project as Project
{
key Project.Project as Project,
Project.ProjectDescription as ProjectDescription,
Project.ResponsiblePerson as ResponsiblePerson,
Project.ResponsiblePersonName as ResponsiblePersonName,
@UI:{ hidden: true }
Project.ProfitCenter as ProfitCenter,
@UI:{ hidden: true }
Project.ControllingArea as ControllingArea,
// DPP Changes
@UI.hidden: true
@Consumption.hidden: true
Project._ResponsiblePerson,
@UI.hidden: true
@Consumption.hidden: true
Project.ApplicantCode,
@UI.hidden: true
@Consumption.hidden: true
Project._ProjectApplicant
}
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