I_SESWorkflowStatusText

DDL: I_SESWORKFLOWSTATUSTEXT SQL: ISESWRKFLWSTSTXT Type: view BASIC Package: APPL_MM_PUR_SES_TR

SES Approval Status - Text

I_SESWorkflowStatusText is a Basic CDS View that provides data about "SES Approval Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SESWorkflowStatus, Language. It has 1 association to related views. Part of development package APPL_MM_PUR_SES_TR.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISESWRKFLWSTSTXT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
EndUserText.label SES Approval Status - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SESWorkflowStatus view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SESWorkflowStatus
KEY Language ddlanguage
SESWorkflowStatusDescription ddtext Description of Approval Status
_Language _Language
@AbapCatalog.sqlViewName: 'ISESWRKFLWSTSTXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true 
@EndUserText.label: 'SES Approval Status - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SESWorkflowStatus'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER

define view I_SESWorkflowStatusText
  as select from dd07t

  association [0..1] to I_Language          as _Language       on $projection.Language = _Language.Language

{
  key cast ( substring( domvalue_l, 1, 2 ) as mmpur_ses_workflow_status ) as SESWorkflowStatus,

      @Semantics.language: true
  key ddlanguage                                                          as Language,

      @Semantics.text: true
      @EndUserText.label: 'Description of Approval Status'
      @EndUserText.quickInfo: 'Description of Approval Status for Service Entry Sheet'
      ddtext                                                              as SESWorkflowStatusDescription,

      _Language
}
where
      domname  = 'MMPUR_SES_WORKFLOW_STATUS'
  and as4local = 'A'