I_Stst

DDL: I_STST SQL: ISTST Type: view BASIC

Standard BOM Link

I_Stst is a Basic CDS View that provides data about "Standard BOM Link" in SAP S/4HANA. It reads from 1 data source (stst) and exposes 6 fields with key fields BillOfMaterial, BillOfMaterialVariant.

Data Sources (1)

SourceAliasJoin Type
stst stst from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISTST view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Standard BOM Link view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial stlnr
KEY BillOfMaterialVariant stlal
Plant werks
BillOfMaterialVariantUsage stlan
BillOfMaterialCategory
StandardObject stobj
@AbapCatalog.sqlViewName: 'ISTST'
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm : #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@EndUserText.label: 'Standard BOM Link'
define view I_Stst
  as select from stst
{
  key stlnr                                   as BillOfMaterial,
  key stlal                                   as BillOfMaterialVariant,
      werks                                   as Plant,
      stlan                                   as BillOfMaterialVariantUsage,
      cast ('S' as stlty preserving type)     as BillOfMaterialCategory,
      stobj                                   as StandardObject

} 
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"STST"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/