P_SupDmndAllDocDelivComp

DDL: P_SUPDMNDALLDOCDELIVCOMP Type: view BASIC Package: VDM_ARUN_ANALYTICS_ALL

View for Deliveries for Sub Contracting PO Components

P_SupDmndAllDocDelivComp is a Basic CDS View that provides data about "View for Deliveries for Sub Contracting PO Components" in SAP S/4HANA. It reads from 3 data sources (lips, I_SupDmndMaterialPlant, vbbe) and exposes 3 fields. Part of development package VDM_ARUN_ANALYTICS_ALL.

Data Sources (3)

SourceAliasJoin Type
lips lips inner
I_SupDmndMaterialPlant marc inner
vbbe vbbe from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PSUPDMNDADDCOMP view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view

Fields (3)

KeyFieldSource TableSource FieldDescription
Reservation lips fsh_rsnum Reservation
ReservationItem lips fsh_rspos Item no.
DeliveredQuantity

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_SupDmndAllDocDelivComp.
-- 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_SupDmndAllDocDelivComp AS
SELECT
  lips.fsh_rsnum AS Reservation,
  lips.fsh_rspos AS ReservationItem,
  sum(vbbe.omeng) AS DeliveredQuantity
FROM vbbe
INNER JOIN lips ON /* join condition not captured in parsed metadata */
INNER JOIN I_SupDmndMaterialPlant AS marc ON /* join condition not captured in parsed metadata */
;