I_ProbSolvingProcStpLfcycStsT

DDL: I_PROBSOLVINGPROCSTPLFCYCSTST SQL: IPRSOLPRCSTLISTT Type: view BASIC

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.

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 (12)

NameValueLevelField
AbapCatalog.sqlViewName IPRSOLPRCSTLISTT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
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
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
@AbapCatalog.sqlViewName: 'IPRSOLPRCSTLISTT'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter:true 
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@ObjectModel: {
    dataCategory: #TEXT,
    usageType: {
        dataClass: #ORGANIZATIONAL,
        sizeCategory: #S,
        serviceQuality: #A
    },
    representativeKey: 'ProbSolvingProcStpLfcycSts'
}
@EndUserText.label: 'Problem-Solving Process Step Lifecycle Status Text'


define view 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' 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PROBSOLVINGPROCSTPLFCYCSTS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/