I_ARunPrioritySlsOrdBasic

DDL: I_ARUNPRIORITYSLSORDBASIC SQL: IARNPRIOSOBSC Type: view BASIC Package: VDM_ARUN_API

Base View for ARun Priority in SOs

I_ARunPrioritySlsOrdBasic is a Basic CDS View that provides data about "Base View for ARun Priority in SOs" in SAP S/4HANA. It reads from 2 data sources (vbak, vbap) and exposes 6 fields with key fields RequirementDocumentNumber, RequirementDocumentItem. Part of development package VDM_ARUN_API.

Data Sources (2)

SourceAliasJoin Type
vbak Head inner
vbap Item from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IARNPRIOSOBSC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.compositionRoot true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Base View for ARun Priority in SOs view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY RequirementDocumentNumber vbap vbeln SD Sched. Agmt
KEY RequirementDocumentItem vbap posnr WBS Element
ARunPriorityValue vbap assignment_priority Demand Priority
ARunDemandGroupPriority vbap arun_group_prio Demand Priority
Material vbap matnr Vehicle Model
Plant vbap werks Receiving Plant

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 I_ARunPrioritySlsOrdBasic.
-- 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.
-- SQL view name: IARNPRIOSOBSC

CREATE VIEW I_ARunPrioritySlsOrdBasic AS
SELECT
  Item.vbeln AS RequirementDocumentNumber,
  Item.posnr AS RequirementDocumentItem,
  Item.assignment_priority AS ARunPriorityValue,
  Item.arun_group_prio AS ARunDemandGroupPriority,
  Item.matnr AS Material,
  Item.werks AS Plant
FROM vbap AS Item
INNER JOIN vbak AS Head ON /* join condition not captured in parsed metadata */
;