I_ProdnVersBillOfMatlUsageVH

DDL: I_PRODNVERSBILLOFMATLUSAGEVH SQL: IPVBOMUSGVH Type: view BASIC

Bill of Material Usage

I_ProdnVersBillOfMatlUsageVH is a Basic CDS View that provides data about "Bill of Material Usage" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterialUsage) and exposes 3 fields with key fields BillOfMaterialVariantUsage, Language.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterialUsage BillOfMaterialUsage from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPVBOMUSGVH view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bill of Material Usage view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BillOfMaterialVariantUsage view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterialVariantUsage I_BillOfMaterialUsage BillOfMaterialVariantUsage Usage
KEY Language I_BillOfMaterialUsage Language Report Text Language
BillOfMaterialVariantUsageDesc I_BillOfMaterialUsage BillOfMaterialVariantUsageDesc Usage text

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_ProdnVersBillOfMatlUsageVH.
-- 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: IPVBOMUSGVH

CREATE VIEW I_ProdnVersBillOfMatlUsageVH AS
SELECT
  BillOfMaterialUsage.BillOfMaterialVariantUsage AS BillOfMaterialVariantUsage,
  BillOfMaterialUsage.Language AS Language,
  BillOfMaterialUsage.BillOfMaterialVariantUsageDesc AS BillOfMaterialVariantUsageDesc
FROM I_BillOfMaterialUsage AS BillOfMaterialUsage
;