R_FlexScenarioACHComponent

DDL: R_FLEXSCENARIOACHCOMPONENT Type: view_entity Package: SWF_FLEX_IFS_RAP_INSTANCE

Flexible Workflow ACH Component

R_FlexScenarioACHComponent is a CDS View that provides data about "Flexible Workflow ACH Component" in SAP S/4HANA. It reads from 3 data sources (df14l, tadir, tdevc) and exposes 2 fields with key field WorkflowDefinition. Part of development package SWF_FLEX_IFS_RAP_INSTANCE.

Data Sources (3)

SourceAliasJoin Type
df14l df14l left_outer
tadir tadir from
tdevc tdevc left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Flexible Workflow ACH Component view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WorkflowDefinition
ps_posidendasSAPApplicationComponent
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Flexible Workflow ACH Component'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
    serviceQuality: #X,
    sizeCategory: #S,
    dataClass: #MIXED
}
define view entity R_FlexScenarioACHComponent as select from tadir
    left outer join tdevc as tdevc on tdevc.devclass = tadir.devclass
    left outer join df14l as df14l on df14l.fctr_id = tdevc.component
{
    key concat( 'WS', tadir.obj_name ) as WorkflowDefinition,
    case tdevc.component
        when '' then 'LOCAL'
        else  df14l.ps_posid
    end as SAPApplicationComponent
}
where tadir.pgmid = 'R3TR' and tadir.object = 'PDWS'