P_ProjectBillingElmntDueDate

DDL: P_PROJECTBILLINGELMNTDUEDATE Type: view_entity COMPOSITE

Billing Due Date of Billing Element

P_ProjectBillingElmntDueDate is a Composite CDS View that provides data about "Billing Due Date of Billing Element" in SAP S/4HANA. It reads from 1 data source (P_ProjBillingElmntBillgDate) and exposes 5 fields with key field BillingPlan.

Data Sources (1)

SourceAliasJoin Type
P_ProjBillingElmntBillgDate P_ProjBillingElmntBillgDate from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Billing Due Date of Billing Element 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 (5)

KeyFieldSource TableSource FieldDescription
SalesOrder
SalesOrderItem
KEY BillingPlan BillingPlan Bill. Plan No.
UserID
DueBillingDate

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_ProjectBillingElmntDueDate.
-- 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_ProjectBillingElmntDueDate AS
SELECT
  BillingPlan,
  min(BillingDate) AS DueBillingDate
FROM P_ProjBillingElmntBillgDate
;