I_BOMItemInclStockOrdNotif

DDL: I_BOMITEMINCLSTOCKORDNOTIF SQL: IBOMINCLSTORDNTF Type: view COMPOSITE Package: ODATA_EAM_MALFUNCTION_MANAGE

BOM Item Stock

I_BOMItemInclStockOrdNotif is a Composite CDS View that provides data about "BOM Item Stock" in SAP S/4HANA. It reads from 1 data source (P_BOMItemStock) and exposes 39 fields with key fields BillOfMaterial, BillOfMaterialVariant, BillOfMaterialCategory, BillOfMaterialItemNodeNumber, HierarchyNodeUniqueID. Part of development package ODATA_EAM_MALFUNCTION_MANAGE.

Data Sources (1)

SourceAliasJoin Type
P_BOMItemStock P_BOMItemStock from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IBOMINCLSTORDNTF view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BOM Item Stock view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (39)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial BillOfMaterial BOM
KEY BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
KEY BillOfMaterialCategory BillOfMaterialCategory BOM category
KEY BillOfMaterialItemNodeNumber BillOfMaterialItemNodeNumber Item node
KEY HierarchyNodeUniqueID HierarchyNodeUniqueID
KEY MaintenanceOrderType MaintenanceOrderType Order Type
KEY NotificationType NotificationType Notifictn Type
AvailabilityCheckType AvailabilityCheckType Avail. check
BOMItemDescription BOMItemDescription Item Text
BOMItemText2 BOMItemText2 Item Text
BillOfMaterialComponent BillOfMaterialComponent Component
BillOfMaterialItemCategory BillOfMaterialItemCategory Item Category
BillOfMaterialItemQuantity BillOfMaterialItemQuantity Quantity
BillOfMaterialItemUnit BillOfMaterialItemUnit Component UoM
BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
ConstructionMaterial ConstructionMaterial ConstType
DrillDownState DrillDownState
Equipment Equipment Equipment check
FunctionalLocation FunctionalLocation Object ID
FunctionalLocationLabelName FunctionalLocationLabelName Functional Loc.
HierarchyNodeLevel HierarchyNodeLevel Hierarchy Node Level
IssuingPlant IssuingPlant
Plant P_BOMItemStock Plant Valuation Area
Material P_BOMItemStock Material Vehicle Model
ParentNodeUniqueID ParentNodeUniqueID
StorageLocation P_BOMItemStock StorageLocation StorageLocation
TechObjIsEquipOrFuncnlLoc TechObjIsEquipOrFuncnlLoc Tech. Obj. Type
TechnicalObject TechnicalObject Technical Object
MatlWrhsStkQtyInMatlBaseUnit MatlWrhsStkQtyInMatlBaseUnit Quantity
MatlWrhsStkQtyOnPlantLvl MatlWrhsStkQtyOnPlantLvl
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
_BillOfMaterialComponent _BillOfMaterialComponent
_ConstructionMaterial _ConstructionMaterial
_Equipment _Equipment
_FunctionalLocation _FunctionalLocation
_FunctionalLocationLabel _FunctionalLocationLabel
_MaintenanceOrderType _MaintenanceOrderType
_Material _Material
_NotificationType _NotificationType

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_BOMItemInclStockOrdNotif.
-- 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.
-- SQL view name: IBOMINCLSTORDNTF

CREATE VIEW I_BOMItemInclStockOrdNotif AS
SELECT
  BillOfMaterial,
  BillOfMaterialVariant,
  BillOfMaterialCategory,
  BillOfMaterialItemNodeNumber,
  HierarchyNodeUniqueID,
  MaintenanceOrderType,
  NotificationType,
  AvailabilityCheckType,
  BOMItemDescription,
  BOMItemText2,
  BillOfMaterialComponent,
  BillOfMaterialItemCategory,
  BillOfMaterialItemQuantity,
  BillOfMaterialItemUnit,
  BillOfMaterialVariantUsage,
  ConstructionMaterial,
  DrillDownState,
  Equipment,
  FunctionalLocation,
  FunctionalLocationLabelName,
  HierarchyNodeLevel,
  IssuingPlant,
  P_BOMItemStock.Plant AS Plant,
  P_BOMItemStock.Material AS Material,
  ParentNodeUniqueID,
  P_BOMItemStock.StorageLocation AS StorageLocation,
  TechObjIsEquipOrFuncnlLoc,
  TechnicalObject,
  MatlWrhsStkQtyInMatlBaseUnit,
  MatlWrhsStkQtyOnPlantLvl,
  IsMarkedForDeletion
FROM P_BOMItemStock
;