I_SrcgProjTypeMilestoneModel

DDL: I_SRCGPROJTYPEMILESTONEMODEL Type: view_entity BASIC Package: VDM_MM_PUR_SRCGPROJ

Milestone Model for Sourcing Proj Type

I_SrcgProjTypeMilestoneModel is a Basic CDS View that provides data about "Milestone Model for Sourcing Proj Type" in SAP S/4HANA. It reads from 1 data source (R_SourcingProjectType) and exposes 6 fields with key fields SourcingProjectType, SrcgProjMilestoneGroup, SourcingProjectMilestoneType. It has 3 associations to related views. Part of development package VDM_MM_PUR_SRCGPROJ.

Data Sources (1)

SourceAliasJoin Type
R_SourcingProjectType _Type from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_SourcingProjectTypeText _SourcingProjectTypeText $projection.SourcingProjectType = _SourcingProjectTypeText.SourcingProjectType
[0..*] I_SrcgProjMilestoneGroupText _SrcgProjMilestoneGroupText $projection.SrcgProjMilestoneGroup = _SrcgProjMilestoneGroupText.SrcgProjMilestoneGroup
[0..*] I_SrcgProjMilestoneTypeText _SrcgProjMilestoneTypeText $projection.SourcingProjectMilestoneType = _SrcgProjMilestoneTypeText.SourcingProjectMilestoneType

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #NONE view
VDM.viewType #BASIC view
EndUserText.label Milestone Model for Sourcing Proj Type view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectType R_SourcingProjectType SourcingProjectType
KEY SrcgProjMilestoneGroup R_SourcingProjectType SrcgProjMilestoneGroup
KEY SourcingProjectMilestoneType _MlstnMod milestonetype
_SourcingProjectTypeText _SourcingProjectTypeText
_SrcgProjMilestoneGroupText _SrcgProjMilestoneGroupText
_SrcgProjMilestoneTypeText _SrcgProjMilestoneTypeText
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel:{
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S },
    supportedCapabilities: [#SQL_DATA_SOURCE,#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET],
    modelingPattern: #NONE }
@VDM.viewType: #BASIC
@EndUserText.label: 'Milestone Model for Sourcing Proj Type'

define view entity I_SrcgProjTypeMilestoneModel
  as select from R_SourcingProjectType as _Type
    join         mmspmlstnmod          as _MlstnMod on _Type.SrcgProjMilestoneGroup = _MlstnMod.milestonegroup
  association [0..*] to I_SourcingProjectTypeText    as _SourcingProjectTypeText    on $projection.SourcingProjectType = _SourcingProjectTypeText.SourcingProjectType
  association [0..*] to I_SrcgProjMilestoneGroupText as _SrcgProjMilestoneGroupText on $projection.SrcgProjMilestoneGroup = _SrcgProjMilestoneGroupText.SrcgProjMilestoneGroup
  association [0..*] to I_SrcgProjMilestoneTypeText  as _SrcgProjMilestoneTypeText  on $projection.SourcingProjectMilestoneType = _SrcgProjMilestoneTypeText.SourcingProjectMilestoneType

{
         @ObjectModel.text.association: '_SourcingProjectTypeText'
         @ObjectModel.sapObjectNodeTypeReference: 'SourcingProjectType'
  key    _Type.SourcingProjectType    as SourcingProjectType,
         @ObjectModel.text.association: '_SrcgProjMilestoneGroupText'
  key    _Type.SrcgProjMilestoneGroup as SrcgProjMilestoneGroup,
         @ObjectModel.text.association: '_SrcgProjMilestoneTypeText'
         @ObjectModel.sapObjectNodeTypeReference: 'SourcingProjectMilestoneType'
  key    _MlstnMod.milestonetype      as SourcingProjectMilestoneType,

         _SourcingProjectTypeText,
         _SrcgProjMilestoneGroupText,
         _SrcgProjMilestoneTypeText
}