ARun_ValAddedSrvcNormalAssgmt

DDL: ARUN_VALADDEDSRVCNORMALASSGMT Type: view

ARun_ValAddedSrvcNormalAssgmt is a CDS View in SAP S/4HANA. It reads from 2 data sources (ARun_ValAddedSrvcSuplrConfBsc, arun_bdbs) and exposes 17 fields.

Data Sources (2)

SourceAliasJoin Type
ARun_ValAddedSrvcSuplrConfBsc _ARunValAddedSrvcSuplrConfBsc left_outer
arun_bdbs _NormalAssignments from

Annotations (9)

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

Fields (17)

KeyFieldSource TableSource FieldDescription
ARunUUID arun_bdbs arunid ARun ID
SalesDocument arun_bdbs salesdoc_num Sales Document
SalesDocumentItem arun_bdbs salesdoc_item SD Item
PurchaseOrder arun_bdbs purchdoc_num STO/RPO
PurchaseOrderItem arun_bdbs purchdoc_item Purch. Req Item
RequestedDate arun_bdbs requested_date Requested date
ProductAvailabilityDate arun_bdbs material_avail_date Mat.Avail.Date
InboundDelivery ARun_ValAddedSrvcSuplrConfBsc InboundDelivery LE Delivery
InboundDeliveryItem ARun_ValAddedSrvcSuplrConfBsc InboundDeliveryItem Item
HigherLvlItmOfBatSpltItm ARun_ValAddedSrvcSuplrConfBsc HigherLvlItmOfBatSpltItm HghLevItmBatch
SupplyAssignmentStatus arun_bdbs arun_status ARun Status
AssignedSupplyType arun_bdbs stock_source Stock Source
StorageLocation arun_bdbs storage_location Sup. Stor. Loc.
Batch arun_bdbs batch Lot No.
SupplyDeliveryDate arun_bdbs delivery_date_po Delivery Date PO
AssignedQuantityInBaseUnit arun_bdbs alloc_qty Assigned Qty
BaseUnit arun_bdbs material_baseunit Base 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_ValAddedSrvcNormalAssgmt.
-- 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_ValAddedSrvcNormalAssgmt AS
SELECT
  _NormalAssignments.arunid AS ARunUUID,
  _NormalAssignments.salesdoc_num AS SalesDocument,
  _NormalAssignments.salesdoc_item AS SalesDocumentItem,
  _NormalAssignments.purchdoc_num AS PurchaseOrder,
  _NormalAssignments.purchdoc_item AS PurchaseOrderItem,
  _NormalAssignments.requested_date AS RequestedDate,
  _NormalAssignments.material_avail_date AS ProductAvailabilityDate,
  _ARunValAddedSrvcSuplrConfBsc.InboundDelivery AS InboundDelivery,
  _ARunValAddedSrvcSuplrConfBsc.InboundDeliveryItem AS InboundDeliveryItem,
  _ARunValAddedSrvcSuplrConfBsc.HigherLvlItmOfBatSpltItm AS HigherLvlItmOfBatSpltItm,
  _NormalAssignments.arun_status AS SupplyAssignmentStatus,
  _NormalAssignments.stock_source AS AssignedSupplyType,
  _NormalAssignments.storage_location AS StorageLocation,
  _NormalAssignments.batch AS Batch,
  _NormalAssignments.delivery_date_po AS SupplyDeliveryDate,
  _NormalAssignments.alloc_qty AS AssignedQuantityInBaseUnit,
  _NormalAssignments.material_baseunit AS BaseUnit
FROM arun_bdbs AS _NormalAssignments
LEFT OUTER JOIN ARun_ValAddedSrvcSuplrConfBsc AS _ARunValAddedSrvcSuplrConfBsc ON /* join condition not captured in parsed metadata */
;