I_DocumentBOMLink

DDL: I_DOCUMENTBOMLINK SQL: IDOCTOBOMLINK Type: view BASIC

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)

SourceAliasJoin Type
dost dost from

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/