I_BOMSelectionEAM

DDL: I_BOMSELECTIONEAM SQL: IBOMSELECTIONEAM Type: view BASIC Package: ODATA_EAM_MALFUNCTION_MANAGE

Bill of Material Item Selection

I_BOMSelectionEAM is a Basic CDS View that provides data about "Bill of Material Item Selection" in SAP S/4HANA. It reads from 1 data source (stas) and exposes 8 fields with key fields BillOfMaterialCategory, BillOfMaterial, BillOfMaterialVariant, BillOfMaterialItemNodeNumber, BOMItemInternalChangeCount. Part of development package ODATA_EAM_MALFUNCTION_MANAGE.

Data Sources (1)

SourceAliasJoin Type
stas stas from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBOMSELECTIONEAM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable false view
VDM.viewType #BASIC view
EndUserText.label Bill of Material Item Selection view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterialCategory stlty Single-Character Flag
KEY BillOfMaterial stlnr BOM
KEY BillOfMaterialVariant stlal AlternativeBOM
KEY BillOfMaterialItemNodeNumber stlkn Single-Character Flag
KEY BOMItemInternalChangeCount stasz Counter
BillOfMaterialVersion bom_versn BOM Version
BOMValidityStartDate datuv Valid-from date
DeletionIndicator lkenz Deletion Ind.

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_BOMSelectionEAM.
-- 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: IBOMSELECTIONEAM

CREATE VIEW I_BOMSelectionEAM AS
SELECT
  stlty AS BillOfMaterialCategory,
  stlnr AS BillOfMaterial,
  stlal AS BillOfMaterialVariant,
  stlkn AS BillOfMaterialItemNodeNumber,
  stasz AS BOMItemInternalChangeCount,
  bom_versn AS BillOfMaterialVersion,
  datuv AS BOMValidityStartDate,
  lkenz AS DeletionIndicator
FROM stas
;