P_ARUNPreviewAssigned

DDL: P_ARUNPREVIEWASSIGNED Type: view COMPOSITE Package: VDM_ARUN_MONITOR

Basic view for Assigned Quantity for Preview Run

P_ARUNPreviewAssigned is a Composite CDS View that provides data about "Basic view for Assigned Quantity for Preview Run" in SAP S/4HANA. It reads from 2 data sources (P_ARunATPItemRequirement, I_ARunPreview) and exposes 6 fields. Part of development package VDM_ARUN_MONITOR.

Data Sources (2)

SourceAliasJoin Type
P_ARunATPItemRequirement ABOP from
I_ARunPreview PREVIEW left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PARUNPREASSIGN view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.personalData.blocking #REQUIRED view

Fields (6)

KeyFieldSource TableSource FieldDescription
ATPCheckUUID P_ARunATPItemRequirement ATPCheckUUID Check ID
ABOPVariantName ABOPVariantName Variant Name
StartedByUser StartedByUser User Name
ATPCheckStartUTCDateTime ATPCheckStartUTCDateTime Start Timestamp
ATPCheckEndUTCDateTime ATPCheckEndUTCDateTime
AssignedQuantityInBaseUnit

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_ARUNPreviewAssigned.
-- 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_ARUNPreviewAssigned AS
SELECT
  ABOP.ATPCheckUUID AS ATPCheckUUID,
  ABOPVariantName,
  StartedByUser,
  ATPCheckStartUTCDateTime,
  ATPCheckEndUTCDateTime,
  sum( PREVIEW.AssignedQuantityInBaseUnit ) AS AssignedQuantityInBaseUnit
FROM P_ARunATPItemRequirement AS ABOP
LEFT OUTER JOIN I_ARunPreview AS PREVIEW ON /* join condition not captured in parsed metadata */
;