ARun_ValAddedSrvcSDAvalyDte

DDL: ARUN_VALADDEDSRVCSDAVALYDTE Type: view

ARun_ValAddedSrvcSDAvalyDte is a CDS View in SAP S/4HANA. It reads from 2 data sources (ARun_ValAddedSrvcSDReqdDte, vbep) and exposes 7 fields.

Data Sources (2)

SourceAliasJoin Type
ARun_ValAddedSrvcSDReqdDte _ARunValAddedSrvcSDReqdDte from
vbep _SalesDocumentScheduleLine left_outer

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #AUTOMATED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.sqlViewName ARUNVASSDDATE2 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view

Fields (7)

KeyFieldSource TableSource FieldDescription
SalesDocument vbep vbeln SD Sched. Agmt
SalesDocumentItem vbep posnr WBS Element
RequestedDate ARun_ValAddedSrvcSDReqdDte ProductAvailabilityDate Mat.Avail.Date
ProductAvailabilityDate vbep mbdat Mat.Avail.Date
ConfirmedRqmtQtyInBaseUnit
DeliveredQuantityInBaseUnit
BaseUnit vbep meins Valuation Unit

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 ARun_ValAddedSrvcSDAvalyDte.
-- 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 ARun_ValAddedSrvcSDAvalyDte AS
SELECT
  _SalesDocumentScheduleLine.vbeln AS SalesDocument,
  _SalesDocumentScheduleLine.posnr AS SalesDocumentItem,
  _ARunValAddedSrvcSDReqdDte.ProductAvailabilityDate AS RequestedDate,
  _SalesDocumentScheduleLine.mbdat AS ProductAvailabilityDate,
  sum(_SalesDocumentScheduleLine.lmeng) AS ConfirmedRqmtQtyInBaseUnit,
  sum(_SalesDocumentScheduleLine.dlvqty_bu) AS DeliveredQuantityInBaseUnit,
  _SalesDocumentScheduleLine.meins AS BaseUnit
FROM ARun_ValAddedSrvcSDReqdDte AS _ARunValAddedSrvcSDReqdDte
LEFT OUTER JOIN vbep AS _SalesDocumentScheduleLine ON /* join condition not captured in parsed metadata */
;