I_SupDmndAllDocProdnOrdComp

DDL: I_SUPDMNDALLDOCPRODNORDCOMP Type: view COMPOSITE

View for Production Order Components

I_SupDmndAllDocProdnOrdComp is a Composite CDS View that provides data about "View for Production Order Components" in SAP S/4HANA. It reads from 2 data sources (P_SUPDMNDSUPASSGMTDMND, I_SupDmndAllDocProdnOrdCompBsc) and exposes 25 fields.

Data Sources (2)

SourceAliasJoin Type
P_SUPDMNDSUPASSGMTDMND Assgmt left_outer
I_SupDmndAllDocProdnOrdCompBsc Comp from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISUPDMNDADCMP3 view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label View for Production Order Components view

Fields (25)

KeyFieldSource TableSource FieldDescription
RequirementDocumentNumber I_SupDmndAllDocProdnOrdCompBsc RequirementDocumentNumber Reservation
RequirementDocumentItem I_SupDmndAllDocProdnOrdCompBsc RequirementDocumentItem
RequirementType I_SupDmndAllDocProdnOrdCompBsc RequirementType RequirementType
RequestedDate I_SupDmndAllDocProdnOrdCompBsc RequestedDate Reqmts date
ProductAvailabilityDate I_SupDmndAllDocProdnOrdCompBsc ProductAvailabilityDate Mat.Avail.Date
RequestedRqmtQtyInBaseUnit I_SupDmndAllDocProdnOrdCompBsc RequestedRqmtQtyInBaseUnit Threshold value
ConfirmedRqmtQtyInBaseUnit I_SupDmndAllDocProdnOrdCompBsc ConfirmedRqmtQtyInBaseUnit Threshold value
DeliveredQuantityInBaseUnit I_SupDmndAllDocProdnOrdCompBsc DeliveredQuantityInBaseUnit
AssignedQuantityInBaseUnit P_SUPDMNDSUPASSGMTDMND AssignedQuantityInBaseUnit
NormalAssignedQuantityInBsUnt P_SUPDMNDSUPASSGMTDMND NormalAssignedQuantityInBsUnt
PreviewAssignedQuantityInBsUnt P_SUPDMNDSUPASSGMTDMND PreviewAssignedQuantityInBsUnt
BaseUnit I_SupDmndAllDocProdnOrdCompBsc BaseUnit Unit of Measure
Material I_SupDmndAllDocProdnOrdCompBsc Material Vehicle Model
MaterialGroup I_SupDmndAllDocProdnOrdCompBsc MaterialGroup Product Group
Plant I_SupDmndAllDocProdnOrdCompBsc Plant Valuation Area
OrderType I_SupDmndAllDocProdnOrdCompBsc OrderType Order Type
CrossPlantConfigurableProduct I_SupDmndAllDocProdnOrdCompBsc CrossPlantConfigurableProduct Cross-plant CP
StorageLocation I_SupDmndAllDocProdnOrdCompBsc StorageLocation StorageLocation
SalesOrder I_SupDmndAllDocProdnOrdCompBsc SalesOrder SD Document
SalesOrderItem I_SupDmndAllDocProdnOrdCompBsc SalesOrderItem Sales Order Item
RequirementSegment I_SupDmndAllDocProdnOrdCompBsc RequirementSegment Req. Segment
SegmentationStrategy I_SupDmndAllDocProdnOrdCompBsc SegmentationStrategy
SegmentationStrategyScope I_SupDmndAllDocProdnOrdCompBsc SegmentationStrategyScope
Division I_SupDmndAllDocProdnOrdCompBsc Division Internal Division ID
IsInternalBatchManaged I_SupDmndAllDocProdnOrdCompBsc IsInternalBatchManaged Batches

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_SupDmndAllDocProdnOrdComp.
-- 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 I_SupDmndAllDocProdnOrdComp AS
SELECT
  Comp.RequirementDocumentNumber AS RequirementDocumentNumber,
  Comp.RequirementDocumentItem AS RequirementDocumentItem,
  Comp.RequirementType AS RequirementType,
  Comp.RequestedDate AS RequestedDate,
  Comp.ProductAvailabilityDate AS ProductAvailabilityDate,
  Comp.RequestedRqmtQtyInBaseUnit AS RequestedRqmtQtyInBaseUnit,
  Comp.ConfirmedRqmtQtyInBaseUnit AS ConfirmedRqmtQtyInBaseUnit,
  Comp.DeliveredQuantityInBaseUnit AS DeliveredQuantityInBaseUnit,
  Assgmt.AssignedQuantityInBaseUnit AS AssignedQuantityInBaseUnit,
  Assgmt.NormalAssignedQuantityInBsUnt AS NormalAssignedQuantityInBsUnt,
  Assgmt.PreviewAssignedQuantityInBsUnt AS PreviewAssignedQuantityInBsUnt,
  Comp.BaseUnit AS BaseUnit,
  Comp.Material AS Material,
  Comp.MaterialGroup AS MaterialGroup,
  Comp.Plant AS Plant,
  Comp.OrderType AS OrderType,
  Comp.CrossPlantConfigurableProduct AS CrossPlantConfigurableProduct,
  Comp.StorageLocation AS StorageLocation,
  Comp.SalesOrder AS SalesOrder,
  Comp.SalesOrderItem AS SalesOrderItem,
  Comp.RequirementSegment AS RequirementSegment,
  Comp.SegmentationStrategy AS SegmentationStrategy,
  Comp.SegmentationStrategyScope AS SegmentationStrategyScope,
  Comp.Division AS Division,
  Comp.IsInternalBatchManaged AS IsInternalBatchManaged
FROM I_SupDmndAllDocProdnOrdCompBsc AS Comp
LEFT OUTER JOIN P_SUPDMNDSUPASSGMTDMND AS Assgmt ON /* join condition not captured in parsed metadata */
;