I_ConstructionTypeBoM

DDL: I_CONSTRUCTIONTYPEBOM SQL: ICONSTTYPEBOM Type: view BASIC

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.

Data Sources (2)

SourceAliasJoin Type
I_Mast _Mast left_outer
I_EquipmentTimeSeg I_EquipmentTimeSeg from

Annotations (10)

NameValueLevelField
EndUserText.label Bill of Material of a Construction Type view
AbapCatalog.sqlViewName ICONSTTYPEBOM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED 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
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'
@AbapCatalog.sqlViewName: 'ICONSTTYPEBOM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@Search.searchable: false

define view 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 ValidityEndDate           = '99991231'
  and   ConstructionMaterial     != ''
  and   MaintenancePlanningPlant != ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EQUIPMENTTIMESEG",
"I_MAST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/