I_WorkflowScenarioType
Flexible Workflow Scenario Type
I_WorkflowScenarioType is a Basic CDS View that provides data about "Flexible Workflow Scenario Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field WrkflwScenType. It has 1 association to related views. Part of development package SWF_FLEX_APP_STAGE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | DomainValue | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_WorkflowScenarioTypeText | _Text | $projection.WrkflwScenType = _Text.WrkflwScenType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWFLWSCENTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Flexible Workflow Scenario Type | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.representativeKey | WrkflwScenType | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WrkflwScenType | |||
| _Text | _Text |
--------------------------------------------------------------------------
-- Fixed values of domain SWF_DEMO_ECR_APPROVAL_STATUS --
--------------------------------------------------------------------------
@AbapCatalog: {
sqlViewName: 'IWFLWSCENTYPE',
compiler.compareFilter: true,
preserveKey: true
// buffering: { status: #SWITCHED_OFF, type: #FULL }
}
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Flexible Workflow Scenario Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #META
}
@ObjectModel.representativeKey: 'WrkflwScenType'
define view I_WorkflowScenarioType
as select from dd07l as DomainValue
association [0..*] to I_WorkflowScenarioTypeText as _Text on $projection.WrkflwScenType = _Text.WrkflwScenType
{
@ObjectModel: { text.association: '_Text' }
key cast(left(DomainValue.domvalue_l, 2) as swf_flex_scenario_type preserving type ) as WrkflwScenType,
_Text
}
where
DomainValue.domname = 'SWF_FLEX_SCENARIO_TYPE'
and DomainValue.as4local = 'A'
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