SWF_FLEX_I_PROCESSSTATUS
Process Status
SWF_FLEX_I_PROCESSSTATUS is a Basic CDS View that provides data about "Process Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ProcessStatus. It has 1 association to related views. Part of development package SWF_FLEX_DEF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | DomainValue | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | SWF_FLEX_I_PROCESSSTATUSTEXT | _Text | $projection.ProcessStatus = _Text.ProcessStatus |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SWFFLEXIVPROCST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AbapCatalog.buffering.type | #NONE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Process Status | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProcessStatus | |||
| _Text | _Text |
--------------------------------------------------------------------------
-- Fixed values of domain SWWFLEXPROC_STATUS --
--------------------------------------------------------------------------
@AbapCatalog: {
sqlViewName: 'SWFFLEXIVPROCST',
compiler.compareFilter: true,
preserveKey: true,
buffering: { status: #NOT_ALLOWED, type: #NONE }
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Process Status'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #META
}
define view SWF_FLEX_I_PROCESSSTATUS
as select from dd07l as DomainValue
association [0..*] to SWF_FLEX_I_PROCESSSTATUSTEXT as _Text on $projection.ProcessStatus = _Text.ProcessStatus
{
@ObjectModel: { text.association: '_Text' }
key left(DomainValue.domvalue_l, 10) as ProcessStatus,
_Text
}
where
DomainValue.domname = 'SWWFLEXPROC_STATUS'
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