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
KEY Language t416t spras
BillOfMaterialVariantUsageDesc t416t antxt
@AbapCatalog.sqlViewName: 'IBOMUSAGE'
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm : #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S,dataClass: #CUSTOMIZING}
@ObjectModel.resultSet.sizeCategory: #XS
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Bill Of Material Usage'
@Search.searchable: true
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: 'BillOfMaterialVariantUsage'
define view I_BillOfMaterialUsage
  as select from t416t
{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
      @ObjectModel.text.element: [ 'BillOfMaterialVariantUsageDesc' ]          
  key stlan       as BillOfMaterialVariantUsage,
      @Semantics.language: true
      @UI.hidden: true
  key t416t.spras as Language,
      @Semantics.text: true
      t416t.antxt as BillOfMaterialVariantUsageDesc
}
where
  spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T416T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/