P_ArunNormalAssigned

DDL: P_ARUNNORMALASSIGNED Type: view COMPOSITE

P_ArunNormalAssigned is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_ARunATPItemRequirement, I_ARunNormal) and exposes 6 fields.

Data Sources (2)

SourceAliasJoin Type
P_ARunATPItemRequirement ABOP from
I_ARunNormal BDBS left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PARUNNMLASSIGN view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
AccessControl.authorizationCheck #NOT_REQUIRED 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_ArunNormalAssigned.
-- 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_ArunNormalAssigned AS
SELECT
  ABOP.ATPCheckUUID AS ATPCheckUUID,
  ABOPVariantName,
  StartedByUser,
  ATPCheckStartUTCDateTime,
  ATPCheckEndUTCDateTime,
  sum(AssignedQuantityInBaseUnit) AS AssignedQuantityInBaseUnit
FROM P_ARunATPItemRequirement AS ABOP
LEFT OUTER JOIN I_ARunNormal AS BDBS ON /* join condition not captured in parsed metadata */
;