dhadm_cds_appl_component

DDL: DHADM_CDS_APPL_COMPONENT Type: view_entity

Application Component

dhadm_cds_appl_component is a CDS View that provides data about "Application Component" in SAP S/4HANA. It reads from 3 data sources (df14l, tadir, tdevc) and exposes 2 fields with key field obj_name.

Data Sources (3)

SourceAliasJoin Type
df14l df14l from
tadir tadir inner
tdevc tdevc inner

Annotations (6)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY obj_name tadir obj_name Object Name
ps_posid df14l ps_posid WBS Element

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 dhadm_cds_appl_component.
-- 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 dhadm_cds_appl_component AS
SELECT
  tadir.obj_name AS obj_name,
  df14l.ps_posid AS ps_posid
FROM df14l
INNER JOIN tdevc ON /* join condition not captured in parsed metadata */
INNER JOIN tadir ON /* join condition not captured in parsed metadata */
;