P_ProcOrdOpsMgmtProcgStsText

DDL: P_PROCORDOPSMGMTPROCGSTSTEXT Type: view_entity BASIC Package: VDM_PP_PROC_ORD_MNG

Process order operation processing status

P_ProcOrdOpsMgmtProcgStsText is a Basic CDS View that provides data about "Process order operation processing status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ProcOrdOpProcgStsCode, Language. It has 1 association to related views. Part of development package VDM_PP_PROC_ORD_MNG.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language dd07t.ddlanguage = _Language.Language

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProcOrdOpProcgStsCode Processing Status
KEY Language dd07t ddlanguage
ProcOrdOpProcgStsText dd07t ddtext
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #A,sizeCategory: #S,dataClass: #MASTER}
@VDM.private: true
@VDM.viewType: #BASIC
define view entity P_ProcOrdOpsMgmtProcgStsText
  as select from dd07t
  association [0..1] to I_Language as _Language on dd07t.ddlanguage = _Language.Language
{
       @ObjectModel.text.element:  [ 'ProcOrdOpProcgStsText' ]
       @UI.textArrangement: #TEXT_ONLY
       @EndUserText.label: 'Processing Status'
  key  cast ( substring( domvalue_l, 1, 2 ) as pppi_procordop_procgstatus ) as ProcOrdOpProcgStsCode,

       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language: true
  key  dd07t.ddlanguage                                                     as Language,
       @Semantics.text: true
       dd07t.ddtext                                                         as ProcOrdOpProcgStsText,

       _Language
}
where
      dd07t.domname  = 'PPPI_PROCORDOP_PROCGSTATUS'
  and dd07t.as4local = 'A'