P_SupDmndAllDocIFOAssgmt

DDL: P_SUPDMNDALLDOCIFOASSGMT Type: view COMPOSITE Package: VDM_ARUN_ANALYTICS_ALL

Basic View for IFO Assignment in Supply Assignment

P_SupDmndAllDocIFOAssgmt is a Composite CDS View that provides data about "Basic View for IFO Assignment in Supply Assignment" in SAP S/4HANA. It reads from 1 data source (I_SupplyAssignmentBasic) and exposes 9 fields. Part of development package VDM_ARUN_ANALYTICS_ALL.

Data Sources (1)

SourceAliasJoin Type
I_SupplyAssignmentBasic I_SupplyAssignmentBasic from

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.sqlViewName PSUPDMNDADIFOA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view

Fields (9)

KeyFieldSource TableSource FieldDescription
Plant Plant Valuation Area
Material Material Vehicle Model
SupplyAssignmentStatus SupplyAssignmentStatus ARun Status
StorageLocation StorageLocation StorageLocation
RequirementDocumentNumber SalesDocument SD Document
RequirementDocumentItem SalesDocumentItem Sales Document Item
RequestedDate RequestedDate Requested date
ProductAvailabilityDate ProductAvailabilityDate Mat.Avail.Date
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_SupDmndAllDocIFOAssgmt.
-- 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_SupDmndAllDocIFOAssgmt AS
SELECT
  Plant,
  Material,
  SupplyAssignmentStatus,
  StorageLocation,
  SalesDocument AS RequirementDocumentNumber,
  SalesDocumentItem AS RequirementDocumentItem,
  RequestedDate,
  ProductAvailabilityDate,
  sum(AssignedQuantityInBaseUnit) AS AssignedQuantityInBaseUnit
FROM I_SupplyAssignmentBasic
;