P_ARunOvwSimlnAssgmt

DDL: P_ARUNOVWSIMLNASSGMT Type: view COMPOSITE Package: VDM_ARUN_MONITOR

Supply Assignment Run Simulation Assignment data

P_ARunOvwSimlnAssgmt is a Composite CDS View that provides data about "Supply Assignment Run Simulation Assignment data" in SAP S/4HANA. It reads from 1 data source (I_ARunSimulation) and exposes 25 fields. Part of development package VDM_ARUN_MONITOR.

Data Sources (1)

SourceAliasJoin Type
I_ARunSimulation I_ARunSimulation from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
AbapCatalog.sqlViewName PARUNOSIMASSGMNT view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view

Fields (25)

KeyFieldSource TableSource FieldDescription
ATPCheckUUID ATPCheckUUID Check ID
Plant Plant Valuation Area
Material Material Vehicle Model
RequirementType RequirementType RequirementType
RequirementDocumentNumber RequirementDocumentNumber
RequirementDocumentItem RequirementDocumentItem
AssignedSupplyType AssignedSupplyType Stock Source
SupplyNumber SupplyNumber
SupplyItem SupplyItem
SupplyScheduleLine SupplyScheduleLine
Batch Batch Lot No.
StorageLocation StorageLocation StorageLocation
AssignedQuantityInBaseUnit
FixedQuantityInBaseUnit
SupAssgmtReservedQtyInBaseUnit
OnHoldQuantityInBaseUnit
ReadyForReleaseQtyInBaseUnit
InboundAssignedQuantityInBsUnt
BaseUnit BaseUnit Unit of Measure
RequestedDate RequestedDate Requested date
ProductAvailabilityDate ProductAvailabilityDate Mat.Avail.Date
SupplyDeliveryDate SupplyDeliveryDate
NumberOfDays NumberOfDays Number of Days
RequirementSegment RequirementSegment Req. Segment
StockSegment StockSegment Stock Segment

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 P_ARunOvwSimlnAssgmt.
-- 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 P_ARunOvwSimlnAssgmt AS
SELECT
  ATPCheckUUID,
  Plant,
  Material,
  RequirementType,
  RequirementDocumentNumber,
  RequirementDocumentItem,
  AssignedSupplyType,
  SupplyNumber,
  SupplyItem,
  SupplyScheduleLine,
  Batch,
  StorageLocation,
  sum(AssignedQuantityInBaseUnit) AS AssignedQuantityInBaseUnit,
  sum(FixedQuantityInBaseUnit) AS FixedQuantityInBaseUnit,
  sum(SupAssgmtReservedQtyInBaseUnit) AS SupAssgmtReservedQtyInBaseUnit,
  sum(OnHoldQuantityInBaseUnit) AS OnHoldQuantityInBaseUnit,
  sum(ReadyForReleaseQtyInBaseUnit) AS ReadyForReleaseQtyInBaseUnit,
  sum(InboundAssignedQuantityInBsUnt) AS InboundAssignedQuantityInBsUnt,
  BaseUnit,
  RequestedDate,
  ProductAvailabilityDate,
  SupplyDeliveryDate,
  NumberOfDays,
  RequirementSegment,
  StockSegment
FROM I_ARunSimulation
;