P_SupDmndAllDocDelivComp

DDL: P_SUPDMNDALLDOCDELIVCOMP Type: view BASIC

P_SupDmndAllDocDelivComp is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (lips) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
lips lips 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(lips.lfimg) AS DeliveredQuantity
FROM lips
;