I_ConstructionTypeBoM
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)
| Source | Alias | Join Type |
|---|---|---|
| I_Mast | _Mast | left_outer |
| I_EquipmentTimeSeg | I_EquipmentTimeSeg | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA