I_BOMSelectionEAM
Bill of Material Item Selection
I_BOMSelectionEAM is a Basic CDS View that provides data about "Bill of Material Item Selection" in SAP S/4HANA. It reads from 1 data source (stas) and exposes 8 fields with key fields BillOfMaterialCategory, BillOfMaterial, BillOfMaterialVariant, BillOfMaterialItemNodeNumber, BOMItemInternalChangeCount.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| stas | stas | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBOMSELECTIONEAM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Search.searchable | false | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Bill of Material Item Selection | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfMaterialCategory | stlty | ||
| KEY | BillOfMaterial | stlnr | ||
| KEY | BillOfMaterialVariant | stlal | ||
| KEY | BillOfMaterialItemNodeNumber | stlkn | ||
| KEY | BOMItemInternalChangeCount | stasz | ||
| BillOfMaterialVersion | bom_versn | |||
| BOMValidityStartDate | datuv | |||
| DeletionIndicator | lkenz |
@AbapCatalog.sqlViewName: 'IBOMSELECTIONEAM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@Search.searchable: false
@VDM.viewType: #BASIC
@EndUserText.label: 'Bill of Material Item Selection'
// PM specific do not reuse
// This object might be deleted after a corresponding reading view defined by the BOM Team
// PM Specific do not reuse
define view I_BOMSelectionEAM as select from stas {
key stlty as BillOfMaterialCategory,
key stlnr as BillOfMaterial,
key stlal as BillOfMaterialVariant,
key stlkn as BillOfMaterialItemNodeNumber,
key stasz as BOMItemInternalChangeCount,
bom_versn as BillOfMaterialVersion,
datuv as BOMValidityStartDate,
lkenz as DeletionIndicator
} where datuv <= $session.system_date and lkenz = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"STAS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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