I_WorkflowApplComp

DDL: I_WORKFLOWAPPLCOMP SQL: IWRKFLWAPPLCOMP Type: view BASIC

Application Component

I_WorkflowApplComp is a Basic CDS View that provides data about "Application Component" in SAP S/4HANA. It reads from 2 data sources (df14l, t100) and exposes 6 fields with key field SAPApplicationComponent. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
df14l Component from
t100 t100 union_all

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WorkflowApplCompText _Text $projection.SAPApplicationComponentId = _Text.SAPApplicationComponentId and $projection.ActivationStatus = _Text.ActivationStatus

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IWRKFLWAPPLCOMP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Application Component view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SAPApplicationComponent
SAPApplicationComponentId df14l fctr_id Component
ActivationStatus df14l as4local Activation State
SAPApplicationComponentId Component
ActivationStatus Activation State
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_WorkflowApplComp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IWRKFLWAPPLCOMP

CREATE VIEW I_WorkflowApplComp AS
SELECT
  cast( Component.ps_posid as swf_flex_appl_comp preserving type ) AS SAPApplicationComponent,
  Component.fctr_id AS SAPApplicationComponentId,
  Component.as4local AS ActivationStatus
FROM df14l AS Component
LEFT OUTER JOIN I_WorkflowApplCompText AS _Text ON SAPApplicationComponentId = _Text.SAPApplicationComponentId AND ActivationStatus = _Text.ActivationStatus  -- association [0..*]
-- UNION ALL with additional select branch(es): t100
;