I_DocumentBOMLink
Document Link for Bill of Material
I_DocumentBOMLink is a Basic CDS View that provides data about "Document Link for Bill of Material" in SAP S/4HANA. It reads from 1 data source (dost) and exposes 7 fields with key fields BillOfMaterial, BillOfMaterialVariant, DocumentType, DocNumber, DocumentVersion.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dost | dost | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDOCTOBOMLINK | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Document Link for Bill of Material | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfMaterial | stlnr | ||
| KEY | BillOfMaterialVariant | stlal | ||
| KEY | DocumentType | dokar | ||
| KEY | DocNumber | doknr | ||
| KEY | DocumentVersion | dokvr | ||
| KEY | DocumentPart | doktl | ||
| BillOfMaterialCategory |
@AbapCatalog.sqlViewName: 'IDOCTOBOMLINK'
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm : #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@VDM.viewType: #BASIC
@EndUserText.label: 'Document Link for Bill of Material'
@Metadata.ignorePropagatedAnnotations: true
define view I_DocumentBOMLink
as select from dost
{
key stlnr as BillOfMaterial,
key stlal as BillOfMaterialVariant,
key dokar as DocumentType,
key doknr as DocNumber,
key dokvr as DocumentVersion,
key doktl as DocumentPart,
cast ('D' as stlty preserving type) as BillOfMaterialCategory
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DOST"
],
"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