I_SourcingProjectPhaseText

DDL: I_SOURCINGPROJECTPHASETEXT Type: view_entity BASIC Package: VDM_MM_PUR_SRCGPROJ

Phase of Sourcing Project - Text

I_SourcingProjectPhaseText is a Basic CDS View that provides data about "Phase of Sourcing Project - Text" in SAP S/4HANA. It reads from 1 data source (mmspphasetxt) and exposes 5 fields with key fields SourcingProjectPhase, Language. It has 1 association to related views. Part of development package VDM_MM_PUR_SRCGPROJ.

Data Sources (1)

SourceAliasJoin Type
mmspphasetxt mmspphasetxt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.entityBuffer.definitionAllowed true view
ObjectModel.representativeKey SourcingProjectPhase view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
EndUserText.label Phase of Sourcing Project - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectPhase phase
KEY Language spras
SourcingProjectPhaseText phase_text
_SourcingProjectPhase _SourcingProjectPhase
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.entityBuffer.definitionAllowed: true

@ObjectModel:{
    representativeKey: 'SourcingProjectPhase',
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
         },
    dataCategory: #TEXT,
    supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE,#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET],
    modelingPattern: #LANGUAGE_DEPENDENT_TEXT
    }

@VDM.viewType: #BASIC

@EndUserText.label: 'Phase of Sourcing Project - Text'
define view entity I_SourcingProjectPhaseText
  as select from mmspphasetxt
  association        to parent I_SourcingProjectPhase as _SourcingProjectPhase on $projection.SourcingProjectPhase = _SourcingProjectPhase.SourcingProjectPhase

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_SourcingProjectPhase'
      @ObjectModel.text.element: ['SourcingProjectPhaseText']
  key phase      as SourcingProjectPhase,
      @Semantics.language
  key spras      as Language,
      @Semantics.text: true
      phase_text as SourcingProjectPhaseText,

      _SourcingProjectPhase,
      _Language
}