SWF_FLEX_I_PROCESSSTATUSTEXT
Process Status Text
SWF_FLEX_I_PROCESSSTATUSTEXT is a Basic CDS View that provides data about "Process Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ProcessStatus. It has 2 associations to related views. Part of development package SWF_FLEX_DEF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | DomainValueText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | SWF_FLEX_I_PROCESSSTATUS | _ProcessStatus | $projection.ProcessStatus = _ProcessStatus.ProcessStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SWFFLEXIVPROCSTT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Process Status Text | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ProcessStatus | |||
| ProcessStatusText | dd07t | ddtext | ||
| Associations_ProcessStatus | ||||
| _Language | _Language |
--------------------------------------------------------------------------
-- Texts of fixed-value domain SWWFLEXPROC_STATUS --
--------------------------------------------------------------------------
@AbapCatalog: {
sqlViewName: 'SWFFLEXIVPROCSTT',
compiler.compareFilter: true,
preserveKey: true,
buffering: { type: #FULL }
}
@ObjectModel.usageType: {
serviceQuality: #B,
sizeCategory: #S,
dataClass: #META
}
@ObjectModel: {
dataCategory: #TEXT
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Process Status Text'
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view SWF_FLEX_I_PROCESSSTATUSTEXT
as select from dd07t as DomainValueText
association [0..1] to SWF_FLEX_I_PROCESSSTATUS as _ProcessStatus on $projection.ProcessStatus = _ProcessStatus.ProcessStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics: { language: true }
@ObjectModel: { foreignKey.association: '_Language' }
key cast( DomainValueText.ddlanguage as sepmra_language preserving type ) as Language,
// @ObjectModel: { foreignKey.association: '_ApprovalStatus' }
key left(DomainValueText.domvalue_l, 10) as ProcessStatus,
@Semantics: { text: true }
DomainValueText.ddtext as ProcessStatusText,
-------------------------------------------------------------------------------------------------
-- Associations --
-------------------------------------------------------------------------------------------------
_ProcessStatus,
_Language
}
where
DomainValueText.domname = 'SWWFLEXPROC_STATUS'
and DomainValueText.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