C_BOMComponentVH

DDL: C_BOMCOMPONENTVH SQL: CBOMCOMPONENTVH Type: view CONSUMPTION

BOM component

C_BOMComponentVH is a Consumption CDS View that provides data about "BOM component" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterialItemTP) and exposes 10 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant, BillOfMaterialVersion, BillOfMaterialItemNodeNumber.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterialItemTP I_BillOfMaterialItemTP from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CBOMCOMPONENTVH view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey BillOfMaterialItemNodeNumber view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label BOM component view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial BOM
KEY BillOfMaterialCategory BillOfMaterialCategory BOM category
KEY BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
KEY BillOfMaterialVersion BillOfMaterialVersion BOM Version
KEY BillOfMaterialItemNodeNumber BillOfMaterialItemNodeNumber Item node
KEY HeaderChangeDocument HeaderChangeDocument Change Number
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
BillOfMaterialComponent BillOfMaterialComponent Component
ComponentDescription ComponentDescription Component Description

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 C_BOMComponentVH.
-- 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: CBOMCOMPONENTVH

CREATE VIEW C_BOMComponentVH AS
SELECT
  cast( BillOfMaterial as cs_stlnr preserving type ) AS BillOfMaterial,
  BillOfMaterialCategory,
  BillOfMaterialVariant,
  BillOfMaterialVersion,
  BillOfMaterialItemNodeNumber,
  HeaderChangeDocument,
  Material,
  Plant,
  BillOfMaterialComponent,
  ComponentDescription
FROM I_BillOfMaterialItemTP
;