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