I_SFIDisassemblyByComponent

DDL: I_SFIDISASSEMBLYBYCOMPONENT Type: view_entity COMPOSITE

SFI Disassembly by Component

I_SFIDisassemblyByComponent is a Composite CDS View that provides data about "SFI Disassembly by Component" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderComponentAssembly) and exposes 11 fields with key fields Reservation, ReservationItem, RecordType, OpActyNtwkInstance, OpActyNtwkElement.

Data Sources (1)

SourceAliasJoin Type
I_MfgOrderComponentAssembly MfgOrderComponentAssembly from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label SFI Disassembly by Component view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Reservation I_MfgOrderComponentAssembly Reservation Reservation
KEY ReservationItem I_MfgOrderComponentAssembly ReservationItem Reservation Item
KEY RecordType I_MfgOrderComponentAssembly RecordType Reservation Record Type
KEY OpActyNtwkInstance I_MfgOrderComponentAssembly OpActyNtwkInstance Instance ID
KEY OpActyNtwkElement I_MfgOrderComponentAssembly OpActyNtwkElement Element Number
KEY AssemblyShopFloorItem I_MfgOrderComponentAssembly AssemblyShopFloorItem Parent SFI ID
MaterialComponentQuantity
VariableSizeItemQuantity
VariableSizeItemUnit OrderComponentBasic VariableSizeItemUnit VSI unit
MaterialBaseUnit OrderComponentBasic BaseUnit Unit of Measure
_OpActyNtwkInstance I_MfgOrderComponentAssembly _OpActyNtwkInstance

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_SFIDisassemblyByComponent.
-- 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_SFIDisassemblyByComponent AS
SELECT
  MfgOrderComponentAssembly.Reservation AS Reservation,
  MfgOrderComponentAssembly.ReservationItem AS ReservationItem,
  MfgOrderComponentAssembly.RecordType AS RecordType,
  MfgOrderComponentAssembly.OpActyNtwkInstance AS OpActyNtwkInstance,
  MfgOrderComponentAssembly.OpActyNtwkElement AS OpActyNtwkElement,
  MfgOrderComponentAssembly.AssemblyShopFloorItem AS AssemblyShopFloorItem,
  cast(sum(MfgOrderComponentAssembly.MaterialComponentQuantity) as kmpmg preserving type) AS MaterialComponentQuantity,
  cast(sum(MfgOrderComponentAssembly.QuantityInEntryUnit) as erfmgv preserving type) AS VariableSizeItemQuantity,
  OrderComponentBasic.VariableSizeItemUnit AS VariableSizeItemUnit,
  OrderComponentBasic.BaseUnit AS MaterialBaseUnit,
  MfgOrderComponentAssembly._OpActyNtwkInstance AS _OpActyNtwkInstance
FROM I_MfgOrderComponentAssembly AS MfgOrderComponentAssembly
;