I_BillOfMaterialUsage
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)
| Source | Alias | Join Type |
|---|---|---|
| t416t | t416t | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA