I_WorkflowApplCompText
Application Component Text
I_WorkflowApplCompText is a Basic CDS View that provides data about "Application Component Text" in SAP S/4HANA. It reads from 2 data sources (t100, df14t) and exposes 11 fields with key fields Language, SAPApplicationComponentId, ActivationStatus. It has 2 associations to related views.
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_WorkflowApplComp | _Component | $projection.SAPApplicationComponentId = _Component.SAPApplicationComponentId and $projection.ActivationStatus = _Component.ActivationStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKFLWAPPLCOMPT | 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 | Application Component Text | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | SAPApplicationComponentId | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | SAPApplicationComponentId | df14t | fctr_id | |
| KEY | ActivationStatus | df14t | as4local | |
| SAPApplicationComponentText | ||||
| Associations_Component | ||||
| sprslasLanguage | ||||
| SAPApplicationComponentId | ||||
| ActivationStatus | ||||
| SAPApplicationComponentText | ||||
| Associations_Component | ||||
| _Language | _Language |
@AbapCatalog: {
sqlViewName: 'IWRKFLWAPPLCOMPT',
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: 'Application Component Text'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'SAPApplicationComponentId'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_WorkflowApplCompText
as select from df14t as Text
association [0..1] to I_WorkflowApplComp as _Component on $projection.SAPApplicationComponentId = _Component.SAPApplicationComponentId
and $projection.ActivationStatus = _Component.ActivationStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics: { language: true }
@ObjectModel: { foreignKey.association: '_Language' }
key cast( Text.langu as ddlanguage preserving type ) as Language,
key Text.fctr_id as SAPApplicationComponentId,
key Text.as4local as ActivationStatus,
@Semantics: { text: true }
cast( Text.name as swf_flex_appl_comp_name preserving type ) as SAPApplicationComponentText,
-------------------------------------------------------------------------------------------------
-- Associations --
-------------------------------------------------------------------------------------------------
_Component,
_Language
}
union all select from t100
association [0..1] to I_WorkflowApplComp as _Component on $projection.SAPApplicationComponentId = _Component.SAPApplicationComponentId
and $projection.ActivationStatus = _Component.ActivationStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
t100.sprsl as Language,
'LOCAL' as SAPApplicationComponentId,
'' as ActivationStatus,
cast( substring( t100.text, 1, 60 ) as swf_flex_appl_comp_name preserving type ) as SAPApplicationComponentText,
-------------------------------------------------------------------------------------------------
-- Associations --
-------------------------------------------------------------------------------------------------
_Component,
_Language
}
where
t100.arbgb = 'SWF_FLEX_IFS'
and t100.msgnr = '024'
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