P_MyProjectBillingElements2

DDL: P_MYPROJECTBILLINGELEMENTS2 Type: view_entity COMPOSITE Package: VDM_PROJECTBILLINGELEMENT

Project Billing Elements by UserID (2)

P_MyProjectBillingElements2 is a Composite CDS View that provides data about "Project Billing Elements by UserID (2)" in SAP S/4HANA. It reads from 2 data sources (I_SDDocumentCompletePartners, I_WorkForcePersonMappings) and exposes 2 fields with key field ProjectBillingElementUUID. Part of development package VDM_PROJECTBILLINGELEMENT.

Data Sources (2)

SourceAliasJoin Type
I_SDDocumentCompletePartners Partners inner
I_WorkForcePersonMappings WorkForcePerson inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Project Billing Elements by UserID (2) view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjectBillingElementUUID ProjectBillingElement ProjectBillingElementUUID PBE UUID
UserID

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_MyProjectBillingElements2.
-- 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_MyProjectBillingElements2 AS
SELECT
  ProjectBillingElement.ProjectBillingElementUUID AS ProjectBillingElementUUID,
  $session.user AS UserID
INNER JOIN I_SDDocumentCompletePartners AS Partners ON /* join condition not captured in parsed metadata */
INNER JOIN I_WorkForcePersonMappings AS WorkForcePerson ON /* join condition not captured in parsed metadata */
;