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