I_FlocConstMaterialBom

DDL: I_FLOCCONSTMATERIALBOM SQL: IFLOCCONSTMATBOM Type: view BASIC

BoM of Functional Location Const. Type

I_FlocConstMaterialBom is a Basic CDS View that provides data about "BoM of Functional Location Const. Type" in SAP S/4HANA. It reads from 2 data sources (I_Mast, I_FunctionalLocation) and exposes 8 fields with key fields FunctionalLocation, BillOfMaterialVariant, BillOfMaterialCategory.

Data Sources (2)

SourceAliasJoin Type
I_Mast _Mast inner
I_FunctionalLocation I_FunctionalLocation from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IFLOCCONSTMATBOM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BoM of Functional Location Const. Type view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation I_FunctionalLocation FunctionalLocation
KEY BillOfMaterialVariant I_Mast BillOfMaterialVariant
KEY BillOfMaterialCategory
MaintenancePlanningPlant I_FunctionalLocation MaintenancePlanningPlant
ConstructionMaterial I_FunctionalLocation ConstructionMaterial
BillOfMaterial I_Mast BillOfMaterial
BillOfMaterialVariantUsage I_Mast BillOfMaterialVariantUsage
Material I_Mast Material
@AbapCatalog.sqlViewName: 'IFLOCCONSTMATBOM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'BoM of Functional Location Const. Type'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M

define view I_FlocConstMaterialBom
  as select from I_FunctionalLocation
    inner join   I_Mast as _Mast on  I_FunctionalLocation.ConstructionMaterial     = _Mast.Material
                                 and I_FunctionalLocation.MaintenancePlanningPlant = _Mast.Plant

{
  key I_FunctionalLocation.FunctionalLocation       as FunctionalLocation,
  key _Mast.BillOfMaterialVariant                   as BillOfMaterialVariant,
  key cast( 'M' as stlty preserving type )          as BillOfMaterialCategory,
      I_FunctionalLocation.MaintenancePlanningPlant as MaintenancePlanningPlant,
      I_FunctionalLocation.ConstructionMaterial     as ConstructionMaterial,
      _Mast.BillOfMaterial                          as BillOfMaterial,
      _Mast.BillOfMaterialVariantUsage              as BillOfMaterialVariantUsage,
      _Mast.Material                                as Material
}
where
      ConstructionMaterial != ''
  and MaintenancePlanningPlant != ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FUNCTIONALLOCATION",
"I_MAST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/