I_FlocConstTypeBoM
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.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Mast | _Mast | left_outer |
| I_FunctionalLocation | I_FunctionalLocation | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLOCCONSTTYBOM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Construction Material BOM - FLOC | 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 (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 |
@AbapCatalog.sqlViewName: 'IFLOCCONSTTYBOM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Construction Material BOM - FLOC'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
define view 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 ConstructionMaterial != ''
and MaintenancePlanningPlant != ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FUNCTIONALLOCATION",
"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