I_Projectmilestone
Project Milestone Details
I_Projectmilestone is a Basic CDS View that provides data about "Project Milestone Details" in SAP S/4HANA. It reads from 1 data source (mlst) and exposes 45 fields with key field ProjectMilestone. It has 7 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mlst | mlst | from |
Associations (7)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Projectmilestonetext | _Text | $projection.ProjectMilestone = _Text.ProjectMilestone and $projection.ProjectMilestoneInternalID = _Text.ProjectMilestoneInternalID |
| [0..1] | I_ProjectNetwork | _ProjectNetwork | $projection.ProjectNetworkInternalID = _ProjectNetwork.ProjectNetworkInternalID |
| [0..1] | I_NetworkActivity | _NetworkActivity | _NetworkActivity.ProjectNetworkInternalID = $projection.ProjectNetworkInternalID and _NetworkActivity.NetworkActivityInternalID = $projection.NetworkActivityInternalID |
| [0..1] | I_WBSElement | _WBSElement | $projection.WBSElementInternalID = _WBSElement.WBSElementInternalID |
| [0..1] | I_Projectmilestoneusage | _UsageText | $projection.UsageCode = _UsageText.UsageCode |
| [1..1] | E_ProjectMilestone | _Extension | mlst.mlst_zaehl = _Extension.ProjectMilestone |
| [0..1] | I_ProjectObjectShortText | _MilestoneShortText | _MilestoneShortText.Language = $session.system_language and _MilestoneShortText.ProjectApplicationIdentifier = 'PS' and ( _MilestoneShortText.ProjectObjectType = 'MW' or _MilestoneShortText.ProjectObjectType = 'ML' ) and $projection.ProjectMilestone = _MilestoneShortText.RelatedProjectObject |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPROJMILESTONE | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Project Milestone Details | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | ProjectMilestone | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (45)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectMilestone | mlst | mlst_zaehl | Milestone Number |
| ProjectMilestoneInternalID | mlst | zaehl | ||
| IsDeleted | ||||
| UsageCode | mlst | mlstn | ||
| ProjectNetworkInternalID | mlst | aufpl | ||
| NetworkActivityInternalID | mlst | aplzl | ||
| WBSElementInternalID | ||||
| ScheduledBasicDate | ||||
| FixedBasicDate | ||||
| MlstnIsRelevantForTrendAnlys | ||||
| MlstnIsRelevantForPrgrsAnlys | ||||
| MlstnIsRelevantForDteInSlsDoc | ||||
| ActualEndDate | ||||
| OrderCategory | ||||
| CreationDate | ||||
| LastChangeDate | ||||
| MlstnIsMarkedForCreateNtwk | ||||
| MlstnIsMarkedForIncludeSubNtwk | ||||
| MlstnIsMarkedForCreateSubNtwk | ||||
| MlstnReleaseStopIsActive | ||||
| MlstnIsUsedforMlstnFunc | ||||
| AuthorizationGroup | ||||
| MlstnIsMarkedForRelUptoStopInd | ||||
| MlstnIsMarkedForRelFllwngActy | ||||
| CreatedByUser | ||||
| LastChangedByUser | ||||
| MlstnIsMarkedForStrtWrkflwTsk | ||||
| DateIsOffsetToParentEndDate | ||||
| MlstnDateOffsetPercent | ||||
| MlstnDateOffsetDurationUnit | ||||
| MlstnDateOffsetDuration | mlst | delta | ||
| DateIsOffsetToParentLtstDates | ||||
| CompletionRateInPercent | ||||
| ProjCostToBeInvoicedPercent | ||||
| WorkflowTask | mlst | task_id | Workflow Task | |
| ActualMilestoneTime | mlst | lst_acttm | ||
| FixedBasicMilestoneTime | mlst | ezeit | ||
| ScheduledBasicMilestoneTime | mlst | tetim | ||
| MilestoneDescription | ||||
| _Text | _Text | |||
| _ProjectNetwork | _ProjectNetwork | |||
| _NetworkActivity | _NetworkActivity | |||
| _WBSElement | _WBSElement | |||
| _UsageText | _UsageText | |||
| _MilestoneShortText | _MilestoneShortText |
@AbapCatalog.sqlViewName: 'IPROJMILESTONE'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
//@AccessControl.privilegedAssociations: [ '_Extension' ]
//@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@EndUserText.label: 'Project Milestone Details'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.representativeKey: 'ProjectMilestone'
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_Projectmilestone
as select from mlst
association [0..1] to I_Projectmilestonetext as _Text on $projection.ProjectMilestone = _Text.ProjectMilestone
and $projection.ProjectMilestoneInternalID = _Text.ProjectMilestoneInternalID
association [0..1] to I_ProjectNetwork as _ProjectNetwork on $projection.ProjectNetworkInternalID = _ProjectNetwork.ProjectNetworkInternalID
association [0..1] to I_NetworkActivity as _NetworkActivity on _NetworkActivity.ProjectNetworkInternalID = $projection.ProjectNetworkInternalID
and _NetworkActivity.NetworkActivityInternalID = $projection.NetworkActivityInternalID
association [0..1] to I_WBSElement as _WBSElement on $projection.WBSElementInternalID = _WBSElement.WBSElementInternalID
association [0..1] to I_Projectmilestoneusage as _UsageText on $projection.UsageCode = _UsageText.UsageCode
association [1..1] to E_ProjectMilestone as _Extension on mlst.mlst_zaehl = _Extension.ProjectMilestone
// Multilanguage Short text
association [0..1] to I_ProjectObjectShortText as _MilestoneShortText on _MilestoneShortText.Language = $session.system_language
and _MilestoneShortText.ProjectApplicationIdentifier = 'PS'
and ( _MilestoneShortText.ProjectObjectType = 'MW' or
_MilestoneShortText.ProjectObjectType = 'ML' )
and $projection.ProjectMilestone = _MilestoneShortText.RelatedProjectObject
{
// @ObjectModel.text.association: '_Text'
@ObjectModel.text.element: 'MilestoneDescription'
@EndUserText.label: 'Milestone Number'
key mlst.mlst_zaehl as ProjectMilestone,
@ObjectModel.text.association: '_Text'
mlst.zaehl as ProjectMilestoneInternalID,
cast (mlst.loekz as ps_s4_loevm) as IsDeleted,
mlst.mlstn as UsageCode,
mlst.aufpl as ProjectNetworkInternalID,
mlst.aplzl as NetworkActivityInternalID,
/*case
when mlst.pspnr = '00000000'
then cast(_ProjectNetwork.WBSElementInternalID as ps_posnr)
else cast(mlst.pspnr as ps_posnr)
end as WBSElementInternalID, */
cast (mlst.pspnr as ps_s4_pspnr) as WBSElementInternalID,
@Semantics.calendar.dayOfMonth: true
cast(mlst.tedat as ps_s4_mlst_tedat) as ScheduledBasicDate,
@Semantics.calendar.dayOfMonth: true
cast(mlst.edatu as lop_fix_date) as FixedBasicDate,
@Semantics.calendar.dayOfMonth: true
cast(mlst.tpdat as ps_s4_mlst_tpdat) as ScheduledForecastedDate,
@Semantics.calendar.dayOfMonth: true
cast(mlst.pdatu as ps_s4_mlst_pdatu) as ForecastedFixedDate,
cast(mlst.kz_trend as ps_s4_mlst_trend) as MlstnIsRelevantForTrendAnlys,
cast(mlst.kz_lstwr as ps_s4_mlst_lstwr) as MlstnIsRelevantForPrgrsAnlys,
cast(mlst.kz_faktp as ps_s4_mlst_faktp) as MlstnIsRelevantForDteInSlsDoc,
@Semantics.calendar.dayOfMonth: true
cast (mlst.lst_actdt as ppe_actual_date) as ActualEndDate,
// mlst.fproz as ProjCostToBeInvoicedPercent,
cast(mlst.autyp as cowb_autyp) as OrderCategory,
@Semantics.calendar.dayOfMonth: true
cast (mlst.dateh as erdat) as CreationDate,
@Semantics.calendar.dayOfMonth: true
@Semantics.businessDate.lastChangedAt
cast (mlst.datev as ps_s4_updat) as LastChangeDate,
cast(mlst.incnw as ps_s4_mlst_incnw) as MlstnIsMarkedForCreateNtwk,
cast(mlst.incpn as ps_s4_mlst_incpn) as MlstnIsMarkedForIncludeSubNtwk,
cast(mlst.incsn as ps_s4_mlst_incsn) as MlstnIsMarkedForCreateSubNtwk,
cast(mlst.kz_frmst as ps_s4_kz_frmst) as MlstnReleaseStopIsActive,
cast(mlst.kz_wflow as ps_s4_mlst_wflow) as MlstnIsUsedforMlstnFunc,
cast (mlst.begru as begru) as AuthorizationGroup,
cast(mlst.relms as ps_s4_mlst_relms) as MlstnIsMarkedForRelUptoStopInd,
cast(mlst.relsu as ps_s4_mlst_relsu) as MlstnIsMarkedForRelFllwngActy,
cast (mlst.userh as ernam) as CreatedByUser,
cast (mlst.userv as ps_s4_aenam) as LastChangedByUser,
cast(mlst.wkflw as ps_s4_mlst_wkflw) as MlstnIsMarkedForStrtWrkflwTsk,
cast(mlst.dltas as ps_s4_mlst_dltas) as DateIsOffsetToParentEndDate, //Offset to finish
cast(mlst.prcnt as ps_s4_mlst_prcnt) as MlstnDateOffsetPercent, //Offset percent
@Semantics.unitOfMeasure: true
cast(mlst.delte as ps_s4_mlst_delte) as MlstnDateOffsetDurationUnit, //Offset time unit
@Semantics.quantity.unitOfMeasure: 'MlstnDateOffsetDurationUnit'
mlst.delta as MlstnDateOffsetDuration, //Offset
cast(mlst.lated as ps_s4_mlst_late) as DateIsOffsetToParentLtstDates, //Offset to Latest Dates
cast(lst_fertg as ps_s4_cgpl_completion) as CompletionRateInPercent,
// cast(lst_fertg as cgpl_completion) as CompletionPercentage,
cast(fproz as fproz) as ProjCostToBeInvoicedPercent,
@EndUserText.label: 'Workflow Task'
mlst.task_id as WorkflowTask,
// cast(fproz as ps_s4_fproz) as ProjCostToBeInvoicedInPercent, //REMOVE
//NEW FIELDS - START
mlst.lst_acttm as ActualMilestoneTime,
mlst.pzeit as FixedForecastMilestoneTime,
mlst.ezeit as FixedBasicMilestoneTime,
mlst.tptim as ScheduledForecastMilestoneTime,
mlst.tetim as ScheduledBasicMilestoneTime,
//NEW FIELDS - FINISH
_Text[1: Language = $session.system_language ].MilestoneDescription as MilestoneDescription,
_Text,
_ProjectNetwork,
_NetworkActivity,
_WBSElement,
_UsageText,
_MilestoneShortText
}
where
mlst.pspnr <> '00000000'
or mlst.aplzl <> '00000000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PROJECTMILESTONETEXT",
"MLST"
],
"ASSOCIATED":
[
"E_PROJECTMILESTONE",
"I_NETWORKACTIVITY",
"I_PROJECTMILESTONETEXT",
"I_PROJECTMILESTONEUSAGE",
"I_PROJECTNETWORK",
"I_PROJECTOBJECTSHORTTEXT",
"I_WBSELEMENT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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