I_WorkflowTaskCustomAttribute
Workflow Task Custom Attribute
I_WorkflowTaskCustomAttribute is a Basic CDS View that provides data about "Workflow Task Custom Attribute" in SAP S/4HANA. It reads from 1 data source (sww_usratt) and exposes 11 fields with key fields WorkflowTaskInternalID, WorkflowTaskCustomAttributeID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sww_usratt | CustomAttribute | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_WorkflowTaskCustomAttribText | _CustomAttributeText | $projection.WorkflowTaskDefinition = _CustomAttributeText.WorkflowTaskDefinition and $projection.WorkflowStepNode = _CustomAttributeText.WorkflowStepNode and $projection.WorkflowTaskCustomAttributeID = _CustomAttributeText.WorkflowTaskCustomAttributeID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWFTSKCUSTATT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Workflow Task Custom Attribute | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.representativeKey | WorkflowTaskCustomAttributeID | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkflowTaskInternalID | sww_usratt | wi_id | |
| KEY | WorkflowTaskCustomAttributeID | sww_usratt | attribute_name | |
| WorkflowTaskDefinition | sww_usratt | def_task | ||
| WorkflowStepNode | sww_usratt | def_nodeid | ||
| WrkflwTskCustomAttribValType | sww_usratt | type | ||
| WrkflwTskCustomAttribValField | sww_usratt | value_field | ||
| WrkflwTskCustomAttribCharVal | sww_usratt | value_c | ||
| WrkflwTskCustomAttribIntgrVal | sww_usratt | value_i | ||
| WrkflwTskCustomAttribDcmlVal | sww_usratt | value_d | ||
| WrkflwTskCustomAttribValUnit | sww_usratt | unit | ||
| _CustomAttributeText | _CustomAttributeText |
@AbapCatalog.sqlViewName: 'IWFTSKCUSTATT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Workflow Task Custom Attribute'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType : {
dataClass: #META,
serviceQuality: #C,
sizeCategory: #L
}
@ObjectModel.representativeKey: 'WorkflowTaskCustomAttributeID'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_WorkflowTaskCustomAttribute
as select from sww_usratt as CustomAttribute
association [0..*] to I_WorkflowTaskCustomAttribText as _CustomAttributeText on $projection.WorkflowTaskDefinition = _CustomAttributeText.WorkflowTaskDefinition
and $projection.WorkflowStepNode = _CustomAttributeText.WorkflowStepNode
and $projection.WorkflowTaskCustomAttributeID = _CustomAttributeText.WorkflowTaskCustomAttributeID
{
@ObjectModel.text.association: '_CustomAttributeText'
key CustomAttribute.wi_id as WorkflowTaskInternalID,
key CustomAttribute.attribute_name as WorkflowTaskCustomAttributeID,
CustomAttribute.def_task as WorkflowTaskDefinition,
CustomAttribute.def_nodeid as WorkflowStepNode,
CustomAttribute.type as WrkflwTskCustomAttribValType,
CustomAttribute.value_field as WrkflwTskCustomAttribValField,
CustomAttribute.value_c as WrkflwTskCustomAttribCharVal,
CustomAttribute.value_i as WrkflwTskCustomAttribIntgrVal,
CustomAttribute.value_d as WrkflwTskCustomAttribDcmlVal,
CustomAttribute.unit as WrkflwTskCustomAttribValUnit,
_CustomAttributeText
}
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