I_ConstructionTypeBoM

DDL: I_CONSTRUCTIONTYPEBOM Type: view_entity BASIC Package: IEQM

Bill of Material of a Construction Type

I_ConstructionTypeBoM is a Basic CDS View that provides data about "Bill of Material of a Construction Type" in SAP S/4HANA. It reads from 2 data sources (I_Mast, I_EquipmentTimeSeg) and exposes 6 fields with key fields Equipment, BillOfMaterialVariant, BillOfMaterialCategory. Part of development package IEQM.

Data Sources (2)

SourceAliasJoin Type
I_Mast _Mast left_outer
I_EquipmentTimeSeg I_EquipmentTimeSeg from

Annotations (7)

NameValueLevelField
EndUserText.label Bill of Material of a Construction Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable false view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Equipment I_EquipmentTimeSeg Equipment
KEY BillOfMaterialVariant I_Mast BillOfMaterialVariant
KEY BillOfMaterialCategory I_Mast BillOfMaterialCategory
ConstructionMaterial I_EquipmentTimeSeg ConstructionMaterial
MaintenancePlanningPlant I_EquipmentTimeSeg MaintenancePlanningPlant
BillOfMaterial I_Mast BillOfMaterial
@EndUserText.label: 'Bill of Material of a Construction Type'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@Search.searchable: false

define view entity I_ConstructionTypeBoM as select from I_EquipmentTimeSeg
left outer join I_Mast as _Mast on  I_EquipmentTimeSeg.ConstructionMaterial     = _Mast.Material
                                and I_EquipmentTimeSeg.MaintenancePlanningPlant = _Mast.Plant
                                
{
  key I_EquipmentTimeSeg.Equipment                as Equipment,
  key _Mast.BillOfMaterialVariant                 as BillOfMaterialVariant,
  key _Mast.BillOfMaterialCategory                as BillOfMaterialCategory,
      I_EquipmentTimeSeg.ConstructionMaterial     as ConstructionMaterial,
      I_EquipmentTimeSeg.MaintenancePlanningPlant as MaintenancePlanningPlant,
      _Mast.BillOfMaterial                        as BillOfMaterial

} where I_EquipmentTimeSeg.ValidityEndDate           = '99991231'
  and   I_EquipmentTimeSeg.ConstructionMaterial     != ''
  and   I_EquipmentTimeSeg.MaintenancePlanningPlant != ''