I_FlocConstTypeBoM

DDL: I_FLOCCONSTTYPEBOM Type: view_entity BASIC Package: ILOM

Construction Material BOM - FLOC

I_FlocConstTypeBoM is a Basic CDS View that provides data about "Construction Material BOM - FLOC" in SAP S/4HANA. It reads from 2 data sources (I_Mast, I_FunctionalLocation) and exposes 7 fields with key fields FunctionalLocation, BillOfMaterialVariant, BillOfMaterialCategory. Part of development package ILOM.

Data Sources (2)

SourceAliasJoin Type
I_Mast _Mast left_outer
I_FunctionalLocation I_FunctionalLocation from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Construction Material BOM - FLOC view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation I_FunctionalLocation FunctionalLocation
KEY BillOfMaterialVariant I_Mast BillOfMaterialVariant
KEY BillOfMaterialCategory I_Mast BillOfMaterialCategory
ConstructionMaterial I_FunctionalLocation ConstructionMaterial
MaintenancePlanningPlant I_FunctionalLocation MaintenancePlanningPlant
BillOfMaterial I_Mast BillOfMaterial
BillOfMaterialVariantUsage I_Mast BillOfMaterialVariantUsage
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Construction Material BOM - FLOC'
@VDM.viewType: #BASIC

@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M

define view entity I_FlocConstTypeBoM 

as select from I_FunctionalLocation
left outer 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 _Mast.BillOfMaterialCategory                  as BillOfMaterialCategory,
      I_FunctionalLocation.ConstructionMaterial     as ConstructionMaterial,
      I_FunctionalLocation.MaintenancePlanningPlant as MaintenancePlanningPlant,
      _Mast.BillOfMaterial                          as BillOfMaterial,
      _Mast.BillOfMaterialVariantUsage              as BillOfMaterialVariantUsage 

} where I_FunctionalLocation.ConstructionMaterial     != ''
  and   I_FunctionalLocation.MaintenancePlanningPlant != ''