I_WorkflowScenarioApplComp

DDL: I_WORKFLOWSCENARIOAPPLCOMP SQL: IWRKFLWSCENAPPLC Type: view BASIC Package: SWF_FLEX_APP_STAGE

Application Component

I_WorkflowScenarioApplComp is a Basic CDS View that provides data about "Application Component" in SAP S/4HANA. It reads from 3 data sources (df14l, tadir, tdevc) and exposes 1 field with key field WrkflwScen. Part of development package SWF_FLEX_APP_STAGE.

Data Sources (3)

SourceAliasJoin Type
df14l df14l left_outer
tadir tadir from
tdevc tdevc left_outer

Annotations (10)

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

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY WrkflwScen

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_WorkflowScenarioApplComp.
-- 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: IWRKFLWSCENAPPLC

CREATE VIEW I_WorkflowScenarioApplComp AS
SELECT
  cast( concat( 'WS', substring( tadir.obj_name,1,8 ) ) as swf_flex_scenario_id preserving type ) AS WrkflwScen
FROM tadir
LEFT OUTER JOIN tdevc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14l ON /* join condition not captured in parsed metadata */
;