P_CdsViewPkgAppComp

DDL: P_CDSVIEWPKGAPPCOMP SQL: PCDSPKGAPPCOMP Type: view BASIC Package: S_ESH_MSM

CDS Views Package and Application Component Info

P_CdsViewPkgAppComp is a Basic CDS View that provides data about "CDS Views Package and Application Component Info" in SAP S/4HANA. It reads from 3 data sources (P_ApplicationComponent, tdevc, tadir) and exposes 6 fields with key field DDLName. Part of development package S_ESH_MSM.

Data Sources (3)

SourceAliasJoin Type
P_ApplicationComponent ApplicationComp left_outer
tdevc CDSAppComp inner
tadir CDSPackage from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PCDSPKGAPPCOMP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_INDEPENDENT view
ClientHandling.algorithm #NONE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #P view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DDLName tadir obj_name Object Name
CDSPackage tadir devclass Package (Obsolete)
CreatedBy tadir author User Name
ApplicationComponent P_ApplicationComponent ApplicationComponent Component
ApplicationComponentName P_ApplicationComponent ApplicationComponentName WBS Element
ApplicationComponentText P_ApplicationComponent ApplicationComponentText

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 P_CdsViewPkgAppComp.
-- 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: PCDSPKGAPPCOMP

CREATE VIEW P_CdsViewPkgAppComp AS
SELECT
  CDSPackage.obj_name AS DDLName,
  CDSPackage.devclass AS CDSPackage,
  CDSPackage.author AS CreatedBy,
  ApplicationComp.ApplicationComponent AS ApplicationComponent,
  ApplicationComp.ApplicationComponentName AS ApplicationComponentName,
  ApplicationComp.ApplicationComponentText AS ApplicationComponentText
FROM tadir AS CDSPackage
INNER JOIN tdevc AS CDSAppComp ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN P_ApplicationComponent AS ApplicationComp ON /* join condition not captured in parsed metadata */
;