I_MyProjectBillingElements

DDL: I_MYPROJECTBILLINGELEMENTS Type: view_entity COMPOSITE Package: VDM_PROJECTBILLINGELEMENT

Project Billing Elements by UserID

I_MyProjectBillingElements is a Composite CDS View that provides data about "Project Billing Elements by UserID" in SAP S/4HANA. It reads from 2 data sources (I_SDDocumentCompletePartners, I_WorkForcePersonMappings) and exposes 3 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 #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #COMPOSITE view
EndUserText.label Project Billing Elements by UserID view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProjectBillingElementUUID ProjectBillingElement ProjectBillingElementUUID PBE UUID
BillingWBSElementInternalID ProjectBillingElement BillingWBSElementInternalID WBS Internal ID
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 I_MyProjectBillingElements.
-- 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 I_MyProjectBillingElements AS
SELECT
  ProjectBillingElement.ProjectBillingElementUUID AS ProjectBillingElementUUID,
  ProjectBillingElement.BillingWBSElementInternalID AS BillingWBSElementInternalID,
  $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 */
;