I_WorkflowTaskResultComment

DDL: I_WORKFLOWTASKRESULTCOMMENT SQL: IWRKFLWCOMMENT Type: view BASIC Package: SWF_FLEX_IFS

Workflow Task Decision Comment

I_WorkflowTaskResultComment is a Basic CDS View that provides data about "Workflow Task Decision Comment" in SAP S/4HANA. It reads from 1 data source (swwwicomment) and exposes 2 fields with key field WorkflowTaskInternalID. Part of development package SWF_FLEX_IFS.

Data Sources (1)

SourceAliasJoin Type
swwwicomment swwwicomment from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IWRKFLWCOMMENT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Workflow Task Decision Comment view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID wi_id
WorkflowTaskResultComment content
@AbapCatalog.sqlViewName: 'IWRKFLWCOMMENT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Workflow Task Decision Comment'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_WorkflowTaskResultComment
  as select from swwwicomment
{
  key wi_id              as WorkflowTaskInternalID,
      content            as WorkflowTaskResultComment

}
/* comment type is decision comment */
where com_type = 'DC'