I_BillOfMaterialUsage

DDL: I_BILLOFMATERIALUSAGE SQL: IBOMUSAGE Type: view BASIC

Bill Of Material Usage

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

Data Sources (1)

SourceAliasJoin Type
t416t t416t from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBOMUSAGE view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter 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
AccessControl.authorizationCheck #CHECK view
EndUserText.label Bill Of Material Usage view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BillOfMaterialVariantUsage view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterialVariantUsage stlan Usage
KEY Language t416t spras Off. Language
BillOfMaterialVariantUsageDesc t416t antxt 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_BillOfMaterialUsage.
-- 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: IBOMUSAGE

CREATE VIEW I_BillOfMaterialUsage AS
SELECT
  stlan AS BillOfMaterialVariantUsage,
  t416t.spras AS Language,
  t416t.antxt AS BillOfMaterialVariantUsageDesc
FROM t416t
;