I_FlocConstMaterialBom
BoM of Functional Location Const. Type
I_FlocConstMaterialBom is a Basic CDS View that provides data about "BoM of Functional Location Const. Type" in SAP S/4HANA. It reads from 2 data sources (I_Mast, I_FunctionalLocation) and exposes 8 fields with key fields FunctionalLocation, BillOfMaterialVariant, BillOfMaterialCategory.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Mast | _Mast | inner |
| I_FunctionalLocation | I_FunctionalLocation | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLOCCONSTMATBOM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | BoM of Functional Location Const. Type | 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 (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FunctionalLocation | I_FunctionalLocation | FunctionalLocation | |
| KEY | BillOfMaterialVariant | I_Mast | BillOfMaterialVariant | |
| KEY | BillOfMaterialCategory | |||
| MaintenancePlanningPlant | I_FunctionalLocation | MaintenancePlanningPlant | ||
| ConstructionMaterial | I_FunctionalLocation | ConstructionMaterial | ||
| BillOfMaterial | I_Mast | BillOfMaterial | ||
| BillOfMaterialVariantUsage | I_Mast | BillOfMaterialVariantUsage | ||
| Material | I_Mast | Material |
@AbapCatalog.sqlViewName: 'IFLOCCONSTMATBOM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'BoM of Functional Location Const. Type'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
define view I_FlocConstMaterialBom
as select from I_FunctionalLocation
inner 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 cast( 'M' as stlty preserving type ) as BillOfMaterialCategory,
I_FunctionalLocation.MaintenancePlanningPlant as MaintenancePlanningPlant,
I_FunctionalLocation.ConstructionMaterial as ConstructionMaterial,
_Mast.BillOfMaterial as BillOfMaterial,
_Mast.BillOfMaterialVariantUsage as BillOfMaterialVariantUsage,
_Mast.Material as Material
}
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