I_WORKFLOWSTEPTEXT

CDS View

Texts for the steps of workflows

I_WORKFLOWSTEPTEXT is a CDS View in S/4HANA. Texts for the steps of workflows. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_WorkflowStepResultText view from COMPOSITE Workflow Step Result Text

Fields (2)

KeyField CDS FieldsUsed in Views
KEY Language Language 1
WorkflowStepText WorkflowStepResultText 1
@AbapCatalog.sqlViewName: 'IWRKFLWSTEPTEXT'
@EndUserText.label: 'Texts for the steps of workflows'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType : {
  dataClass: #META,
  serviceQuality: #C,
  sizeCategory: #M
}
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'WorkflowStepNode'
@AbapCatalog.compiler.compareFilter: true

define view I_WorkflowStepText
  as select from swd_text
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key wfd_id                         as WorkflowScenarioDefinition,
  key version                        as WorkflowScenarioDefinitionVers,
  key nodeid                         as WorkflowStepNode,
  key language                       as Language,
      @Semantics:   { text: true }
      _Language,
      wfd_text                       as WorkflowStepText
}
where
      exetyp  = 'E'
  and texttyp = 'ND'