ARun_ValAddedSrvcInbDelivBsc

DDL: ARUN_VALADDEDSRVCINBDELIVBSC Type: view

ARun_ValAddedSrvcInbDelivBsc is a CDS View in SAP S/4HANA. It reads from 2 data sources (likp, lips) and exposes 5 fields.

Data Sources (2)

SourceAliasJoin Type
likp _InboundDelivery from
lips _InboundDeliveryItem inner

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #AUTOMATED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.sqlViewName ARUNVASINBDEVBSC 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 (5)

KeyFieldSource TableSource FieldDescription
InboundDelivery lips vbeln SD Sched. Agmt
ValAddedSrvcItemNumber lips posnr WBS Element
InboundDeliveryItem lips fsh_vas_prnt_id Item
Plant lips werks Receiving Plant
Material lips matnr Vehicle Model

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_ValAddedSrvcInbDelivBsc.
-- 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_ValAddedSrvcInbDelivBsc AS
SELECT
  _InboundDeliveryItem.vbeln AS InboundDelivery,
  _InboundDeliveryItem.posnr AS ValAddedSrvcItemNumber,
  _InboundDeliveryItem.fsh_vas_prnt_id AS InboundDeliveryItem,
  _InboundDeliveryItem.werks AS Plant,
  _InboundDeliveryItem.matnr AS Material
FROM likp AS _InboundDelivery
INNER JOIN lips AS _InboundDeliveryItem ON /* join condition not captured in parsed metadata */
;