P_PPM_RespSummaryForObjInRange

DDL: P_PPM_RESPSUMMARYFOROBJINRANGE Type: view COMPOSITE Package: VDM_PPM_OBJECTS_COMMON

Summary of resp Business Partner for Object in Date Range

P_PPM_RespSummaryForObjInRange is a Composite CDS View that provides data about "Summary of resp Business Partner for Object in Date Range" in SAP S/4HANA. It reads from 1 data source (I_PPM_BusinessPartnerForObject) and exposes 3 fields with key field ReferencedObjectUUID. Part of development package VDM_PPM_OBJECTS_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_PPM_BusinessPartnerForObject I_PPM_BusinessPartnerForObject from

Annotations (11)

NameValueLevelField
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName PPPMRSPFROBJRNG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ReferencedObjectUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ReferencedObjectUUID ReferencedObjectUUID Referenced Object
NumberOfResponsibles
BusinessPartnerUUID

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_PPM_RespSummaryForObjInRange.
-- 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 P_PPM_RespSummaryForObjInRange AS
SELECT
  ReferencedObjectUUID,
  count( * ) AS NumberOfResponsibles,
  min( I_PPM_BusinessPartnerForObject.BusinessPartnerUUID ) AS BusinessPartnerUUID
FROM I_PPM_BusinessPartnerForObject
;