R_FlexScenarioACHComponent
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)
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
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