I_ProbSolvingProcStpLfcycStsT

DDL: I_PROBSOLVINGPROCSTPLFCYCSTST Type: view_entity BASIC Package: VDM_QM_PROBSOLVINGPROC

Problem-Solving Process Step Lifecycle Status Text

I_ProbSolvingProcStpLfcycStsT is a Basic CDS View that provides data about "Problem-Solving Process Step Lifecycle Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ProbSolvingProcStpLfcycSts, Language. It has 2 associations to related views. Part of development package VDM_QM_PROBSOLVINGPROC.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (9)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey ProbSolvingProcStpLfcycSts view
Analytics.technicalName IPRSOLPRCSTLISTT view
EndUserText.label Problem-Solving Process Step Lifecycle Status Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProbSolvingProcStpLfcycSts
KEY Language ddlanguage
ProbSolvingProcStpLfcycStsText
_Language _Language
_ProbSolvingProcLfcycSts _ProbSolvingProcLfcycSts
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@ObjectModel: {
    dataCategory: #TEXT,
    usageType: {
        dataClass: #ORGANIZATIONAL,
        sizeCategory: #S,
        serviceQuality: #A
    },
    representativeKey: 'ProbSolvingProcStpLfcycSts'
}
@Analytics.technicalName: 'IPRSOLPRCSTLISTT'
@EndUserText.label: 'Problem-Solving Process Step Lifecycle Status Text'


define view entity I_ProbSolvingProcStpLfcycStsT as select from dd07t  

    association [0..1] to I_Language        as _Language        on $projection.Language = _Language.Language  
    association [1..1] to I_ProbSolvingProcStpLfcycSts as _ProbSolvingProcLfcycSts on $projection.ProbSolvingProcStpLfcycSts = _ProbSolvingProcLfcycSts.ProbSolvingProcStpLfcycSts
{
    @ObjectModel.foreignKey.association: '_ProbSolvingProcLfcycSts'
    key cast ( substring( domvalue_l, 1, 2 ) as qprobsolvingprocesslcyclestat preserving type ) as ProbSolvingProcStpLfcycSts,
    @ObjectModel.foreignKey.association: '_Language'
    @Semantics.language: true
    key ddlanguage as Language,
    
    @Semantics.text: true
    cast ( dd07t.ddtext as qprbslvprcsteplcyclestatt preserving type ) as  ProbSolvingProcStpLfcycStsText,
    
    /* Association */
    _Language,
    _ProbSolvingProcLfcycSts
      
} where dd07t.domname = 'QPRBSLVPRCSTEPLCYCLESTAT' and dd07t.as4local = 'A'