I_MultiLevelBOM

DDL: I_MULTILEVELBOM SQL: IMULTILEVELBOM Type: view COMPOSITE

Multi Level BOM determination

I_MultiLevelBOM is a Composite CDS View that provides data about "Multi Level BOM determination" in SAP S/4HANA. It reads from 1 data source (I_Mast) and exposes 4 fields with key fields Material, Plant.

Data Sources (1)

SourceAliasJoin Type
I_Mast I_Mast from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMULTILEVELBOM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Multi Level BOM determination view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material
KEY Plant Plant
BillOfMaterialVariantUsage
BillOfMaterialVariant
@AbapCatalog.sqlViewName: 'IMULTILEVELBOM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm : #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #MASTER}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Multi Level BOM determination'
define view I_MultiLevelBOM as select from I_Mast

{

key Material as Material,
key Plant as Plant,
min(BillOfMaterialVariantUsage) as BillOfMaterialVariantUsage,
min(BillOfMaterialVariant) as BillOfMaterialVariant
   
}
group by Material, Plant