I_MaterialBOMValidItemsSearch
CDS based search model view for BOM Item
I_MaterialBOMValidItemsSearch is a Basic CDS View that provides data about "CDS based search model view for BOM Item" in SAP S/4HANA. It reads from 2 data sources (stas, stpo) and exposes 23 fields with key fields BillOfMaterial, BillOfMaterialVariant, BillOfMaterialCategory, BillOfMaterialItemNodeNumber, BillOfMaterialItemUUID. It has 1 association to related views. Part of development package CS_MODEL.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MaterialText | _MaterialText | ( $projection.BillOfMaterialComponent = _MaterialText.Material and _MaterialText.Language = $session.system_language ) |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBOMITEMSEARCH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | CDS based search model view for BOM Item | view |
Fields (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfMaterial | stas | stlnr | |
| KEY | BillOfMaterialVariant | stas | stlal | |
| KEY | BillOfMaterialCategory | stas | stlty | |
| KEY | BillOfMaterialItemNodeNumber | stas | stlkn | |
| KEY | BillOfMaterialItemUUID | stpo | guidx | |
| InheritedNodeNumberForBOMItem | stas | stvkn | ||
| InheritedNodeNumberVersionBOM | stpo | stvkn_versn | ||
| BillOfMaterialVersion | stas | bom_versn | ||
| ValidityStartDate | stpo | datuv | ||
| ValidityEndDate | stpo | valid_to | ||
| EngineeringChangeDocument | stpo | aennr | ||
| BOMItemRecordCreationDate | stpo | andat | ||
| BOMItemCreatedByUser | stpo | annam | ||
| BOMItemLastChangeDate | stpo | aedat | ||
| BOMItemLastChangedByUser | stpo | aenam | ||
| BillOfMaterialComponent | stpo | idnrk | ||
| ComponentDescription | _MaterialText | MaterialName | Component Description | |
| BillOfMaterialItemCategory | stpo | postp | ||
| BillOfMaterialItemNumber | stpo | posnr | ||
| BillOfMaterialItemUnit | stpo | meins | ||
| BillOfMaterialItemQuantity | stpo | menge | ||
| BOMItemDescription | stpo | potx1 | ||
| BOMItemText2 | stpo | potx2 |
@AbapCatalog.sqlViewName: 'IBOMITEMSEARCH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
@EndUserText.label: 'CDS based search model view for BOM Item'
define view I_MaterialBOMValidItemsSearch
as select from stas as stas
inner join stpo as stpo on stas.stlty = stpo.stlty
and stas.stlnr = stpo.stlnr
and stas.stlkn = stpo.stlkn
association [0..1] to I_MaterialText as _MaterialText on (
$projection.BillOfMaterialComponent = _MaterialText.Material
and _MaterialText.Language = $session.system_language
)
{
key stas.stlnr as BillOfMaterial,
key stas.stlal as BillOfMaterialVariant,
key stas.stlty as BillOfMaterialCategory,
key stas.stlkn as BillOfMaterialItemNodeNumber,
key stpo.guidx as BillOfMaterialItemUUID,
stas.stvkn as InheritedNodeNumberForBOMItem,
stpo.stvkn_versn as InheritedNodeNumberVersionBOM,
stas.bom_versn as BillOfMaterialVersion,
@Semantics.businessDate.from: true
stpo.datuv as ValidityStartDate,
@Semantics.businessDate.to: true
stpo.valid_to as ValidityEndDate,
stpo.aennr as EngineeringChangeDocument,
stpo.andat as BOMItemRecordCreationDate,
stpo.annam as BOMItemCreatedByUser,
stpo.aedat as BOMItemLastChangeDate,
stpo.aenam as BOMItemLastChangedByUser,
stpo.idnrk as BillOfMaterialComponent,
@EndUserText.label: 'Component Description'
_MaterialText.MaterialName as ComponentDescription,
stpo.postp as BillOfMaterialItemCategory,
stpo.posnr as BillOfMaterialItemNumber,
stpo.meins as BillOfMaterialItemUnit,
stpo.menge as BillOfMaterialItemQuantity,
stpo.potx1 as BOMItemDescription,
stpo.potx2 as BOMItemText2
}
where
stpo.stlty = 'M'
and stas.lkenz = ''
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