I_WorkflowResult
Exposes result of a workflow instance
I_WorkflowResult is a Basic CDS View that provides data about "Exposes result of a workflow instance" in SAP S/4HANA. It reads from 1 data source (swpsteplog) and exposes 3 fields with key field WorkflowInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| swpsteplog | swpsteplog | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKFLWRESULT | 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 | Exposes result of a workflow instance | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkflowInternalID | wf_id | ||
| WorkflowResult | flex_return_value | |||
| WorkflowResultNature | flex_return_nature |
@AbapCatalog.sqlViewName: 'IWRKFLWRESULT'
@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: 'Exposes result of a workflow instance'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_WorkflowResult
as select from swpsteplog
{
key wf_id as WorkflowInternalID,
flex_return_value as WorkflowResult,
flex_return_nature as WorkflowResultNature
}
where
node_id = '0000000001'
and returntyp = 'FX'
and flex_return_value != ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SWPSTEPLOG"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA