I_CDSAPPCOMPONENT

DDL: I_CDSAPPCOMPONENT Type: view_entity

CDS View Browser Application Component

I_CDSAPPCOMPONENT is a CDS View that provides data about "CDS View Browser Application Component" in SAP S/4HANA. It reads from 3 data sources (tadir, df14t, tdevc) and exposes 3 fields with key field CDSView. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
tadir _cdsAppComponent from
df14t _df14t left_outer
tdevc _tdevc left_outer

Associations (1)

CardinalityTargetAliasCondition
[0..1] df14l _df14l _tdevc.component = _df14l.fctr_id

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS View Browser Application Component view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CDSView tadir obj_name Object Name
ApplicationComponent _df14l ps_posid WBS Element
ApplicationComponentDesc df14t name Zone name

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_CDSAPPCOMPONENT.
-- 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.

CREATE VIEW I_CDSAPPCOMPONENT AS
SELECT
  _cdsAppComponent.obj_name AS CDSView,
  _df14l.ps_posid AS ApplicationComponent,
  _df14t.name AS ApplicationComponentDesc
FROM tadir AS _cdsAppComponent
LEFT OUTER JOIN tdevc AS _tdevc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14t AS _df14t ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14l AS _df14l ON _tdevc.component = _df14l.fctr_id  -- association [0..1]
;