I_ARunRelChkPreviewRunAssgmt

DDL: I_ARUNRELCHKPREVIEWRUNASSGMT SQL: ISUPASSGMTPREV Type: view BASIC Package: ARUN_RELEASE_CHECK

Normal and Preview Assignments

I_ARunRelChkPreviewRunAssgmt is a Basic CDS View that provides data about "Normal and Preview Assignments" in SAP S/4HANA. It reads from 2 data sources (I_ARunNormal, I_ARunPreview) and exposes 25 fields. Part of development package ARUN_RELEASE_CHECK.

Data Sources (2)

SourceAliasJoin Type
I_ARunNormal _SupplyAssgnNormal from
I_ARunPreview _SupplyAssgnPreview union_all

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISUPASSGMTPREV view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Normal and Preview Assignments view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (25)

KeyFieldSource TableSource FieldDescription
ARunUUID I_ARunNormal ARunUUID ARun ID
Plant I_ARunNormal Plant Valuation Area
Material I_ARunNormal Material Vehicle Model
RequirementDocumentNumber I_ARunNormal RequirementDocumentNumber
RequirementDocumentItem I_ARunNormal RequirementDocumentItem
RequestedDate I_ARunNormal RequestedDate Requested date
ProductAvailabilityDate I_ARunNormal ProductAvailabilityDate Mat.Avail.Date
SupplyAssignmentStatus I_ARunNormal SupplyAssignmentStatus ARun Status
RequirementType I_ARunNormal RequirementType RequirementType
AssignedSupplyType I_ARunNormal AssignedSupplyType Stock Source
AssignedQuantityInBaseUnit I_ARunNormal AssignedQuantityInBaseUnit Assigned Qty
BaseUnit I_ARunNormal BaseUnit Unit of Measure
ARunUUIDasARunUUID
Plant I_ARunPreview Plant Valuation Area
Material I_ARunPreview Material Vehicle Model
RequirementDocumentNumber I_ARunPreview RequirementDocumentNumber
RequirementDocumentItem I_ARunPreview RequirementDocumentItem
RequestedDate I_ARunPreview RequestedDate Requested date
ProductAvailabilityDate I_ARunPreview ProductAvailabilityDate Mat.Avail.Date
SupplyAssignmentStatus I_ARunPreview SupplyAssignmentStatus ARun Status
RequirementType I_ARunPreview RequirementType RequirementType
AssignedSupplyType I_ARunPreview AssignedSupplyType Stock Source
AssignedQuantityInBaseUnit I_ARunPreview AssignedQuantityInBaseUnit Assigned Qty
BaseUnit I_ARunPreview BaseUnit Unit of Measure
SupAssgmtExecutionMode

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_ARunRelChkPreviewRunAssgmt.
-- 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: ISUPASSGMTPREV

CREATE VIEW I_ARunRelChkPreviewRunAssgmt AS
SELECT
  _SupplyAssgnNormal.ARunUUID AS ARunUUID,
  _SupplyAssgnNormal.Plant AS Plant,
  _SupplyAssgnNormal.Material AS Material,
  _SupplyAssgnNormal.RequirementDocumentNumber AS RequirementDocumentNumber,
  _SupplyAssgnNormal.RequirementDocumentItem AS RequirementDocumentItem,
  _SupplyAssgnNormal.RequestedDate AS RequestedDate,
  _SupplyAssgnNormal.ProductAvailabilityDate AS ProductAvailabilityDate,
  _SupplyAssgnNormal.SupplyAssignmentStatus AS SupplyAssignmentStatus,
  _SupplyAssgnNormal.RequirementType AS RequirementType,
  _SupplyAssgnNormal.AssignedSupplyType AS AssignedSupplyType,
  _SupplyAssgnNormal.AssignedQuantityInBaseUnit AS AssignedQuantityInBaseUnit,
  _SupplyAssgnNormal.BaseUnit AS BaseUnit,
  cast('1' as arun_exec_mode ) as SupAssgmtExecutionMode AS ARunUUIDasARunUUID,
  cast('2' as arun_exec_mode ) AS SupAssgmtExecutionMode
FROM I_ARunNormal AS _SupplyAssgnNormal
-- UNION ALL with additional select branch(es): I_ARunPreview
;