I_WrkflwStepTypeClassfctn
Exposes the classification of step types
I_WrkflwStepTypeClassfctn is a Basic CDS View that provides data about "Exposes the classification of step types" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field WorkflowStepTypeClassfctn. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | DomainValueText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_WrkflwStepTypeClassfctnTxt | _WorkflowStepTypeClassfctnText | $projection.WorkflowStepTypeClassfctn = _WorkflowStepTypeClassfctnText.WorkflowStepTypeClassfctn |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKFLWSTEPTYPCL | view | |
| AbapCatalog.buffering.type | #NONE | view | |
| EndUserText.label | Exposes the classification of step types | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | WorkflowStepTypeClassfctn | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkflowStepTypeClassfctn | |||
| _WorkflowStepTypeClassfctnText | _WorkflowStepTypeClassfctnText |
@AbapCatalog : {
sqlViewName: 'IWRKFLWSTEPTYPCL',
buffering.type: #NONE
}
@EndUserText.label: 'Exposes the classification of step types'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel : {
usageType : {
dataClass: #META,
serviceQuality: #C,
sizeCategory: #S
}
}
@ObjectModel.representativeKey: 'WorkflowStepTypeClassfctn'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_WrkflwStepTypeClassfctn
as select from dd07l as DomainValueText
association [0..*] to I_WrkflwStepTypeClassfctnTxt as _WorkflowStepTypeClassfctnText on $projection.WorkflowStepTypeClassfctn = _WorkflowStepTypeClassfctnText.WorkflowStepTypeClassfctn
{
@ObjectModel.text.association: '_WorkflowStepTypeClassfctnText'
key left(DomainValueText.domvalue_l, 10) as WorkflowStepTypeClassfctn,
_WorkflowStepTypeClassfctnText
}
where
DomainValueText.domname = 'SWD_STEP_CLASSIFICATION'
and DomainValueText.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_WRKFLWSTEPTYPECLASSFCTNTXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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