P_SFODisassemblyByComponent

DDL: P_SFODISASSEMBLYBYCOMPONENT Type: view_entity CONSUMPTION

P_SFODisassemblyByComponent is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_OpActyComponentAssignment, I_SFODisassemblyByComponent) and exposes 10 fields with key fields Reservation, ReservationItem, RecordType, OpActyNtwkInstance, OpActyNtwkElement.

Data Sources (2)

SourceAliasJoin Type
I_OpActyComponentAssignment OpActyComponentAssignment inner
I_SFODisassemblyByComponent SFIDsassldCompByComponent from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Reservation I_SFODisassemblyByComponent Reservation Reservation
KEY ReservationItem I_SFODisassemblyByComponent ReservationItem Reservation Item
KEY RecordType I_SFODisassemblyByComponent RecordType Reservation Record Type
KEY OpActyNtwkInstance I_SFODisassemblyByComponent OpActyNtwkInstance Instance ID
KEY OpActyNtwkElement I_SFODisassemblyByComponent OpActyNtwkElement Element Number
MaterialComponentQuantity I_SFODisassemblyByComponent MaterialComponentQuantity
VariableSizeItemQuantity I_SFODisassemblyByComponent VariableSizeItemQuantity VSI Quantity
VariableSizeItemUnit I_SFODisassemblyByComponent VariableSizeItemUnit VSI unit
MaterialBaseUnit I_SFODisassemblyByComponent MaterialBaseUnit Valuation Unit
ComponentAssemblyType I_OpActyComponentAssignment ComponentAssemblyType Assembly Type

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_SFODisassemblyByComponent.
-- 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_SFODisassemblyByComponent AS
SELECT
  SFIDsassldCompByComponent.Reservation AS Reservation,
  SFIDsassldCompByComponent.ReservationItem AS ReservationItem,
  SFIDsassldCompByComponent.RecordType AS RecordType,
  SFIDsassldCompByComponent.OpActyNtwkInstance AS OpActyNtwkInstance,
  SFIDsassldCompByComponent.OpActyNtwkElement AS OpActyNtwkElement,
  SFIDsassldCompByComponent.MaterialComponentQuantity AS MaterialComponentQuantity,
  SFIDsassldCompByComponent.VariableSizeItemQuantity AS VariableSizeItemQuantity,
  SFIDsassldCompByComponent.VariableSizeItemUnit AS VariableSizeItemUnit,
  SFIDsassldCompByComponent.MaterialBaseUnit AS MaterialBaseUnit,
  OpActyComponentAssignment.ComponentAssemblyType AS ComponentAssemblyType
FROM I_SFODisassemblyByComponent AS SFIDsassldCompByComponent
INNER JOIN I_OpActyComponentAssignment AS OpActyComponentAssignment ON /* join condition not captured in parsed metadata */
;