I_EntSrchCDSModelPckgCompDet

DDL: I_ENTSRCHCDSMODELPCKGCOMPDET SQL: IENTSRCHPCKGCOMP Type: view BASIC Package: S_ESH_MSM

CDS View for Package and Application component details

I_EntSrchCDSModelPckgCompDet is a Basic CDS View that provides data about "CDS View for Package and Application component details" in SAP S/4HANA. It reads from 3 data sources (P_ApplicationComponent, tdevc, tadir) and exposes 5 fields with key field EntSrchModelName. Part of development package S_ESH_MSM.

Data Sources (3)

SourceAliasJoin Type
P_ApplicationComponent ApplicationComp left_outer
tdevc CDSAppComp inner
tadir CDSPackage from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IENTSRCHPCKGCOMP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS View for Package and Application component details view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY EntSrchModelName tadir obj_name Object Name
EntSrchModelPackageName tadir devclass Package (Obsolete)
EntSrchModelCreatedByUser tadir author User Name
EntSrchModelApplComponent P_ApplicationComponent ApplicationComponentName WBS Element
EntSrchModelApplComponentText 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 I_EntSrchCDSModelPckgCompDet.
-- 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: IENTSRCHPCKGCOMP

CREATE VIEW I_EntSrchCDSModelPckgCompDet AS
SELECT
  CDSPackage.obj_name AS EntSrchModelName,
  CDSPackage.devclass AS EntSrchModelPackageName,
  CDSPackage.author AS EntSrchModelCreatedByUser,
  ApplicationComp.ApplicationComponentName AS EntSrchModelApplComponent,
  ApplicationComp.ApplicationComponentText AS EntSrchModelApplComponentText
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 */
;