I_FldLogsMaterialSupplyProcess
FL:Material and Plant for Supply process
I_FldLogsMaterialSupplyProcess is a Basic CDS View that provides data about "FL:Material and Plant for Supply process" in SAP S/4HANA. It reads from 2 data sources (flog_plant, marc) and exposes 6 fields with key fields Material, Plant.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| flog_plant | _FlRemotePlant | inner |
| marc | _mat | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLDMATSUPPLY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | FL:Material and Plant for Supply process | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog.sqlViewName: 'IFLDMATSUPPLY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'FL:Material and Plant for Supply process'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_FldLogsMaterialSupplyProcess
// as select distinct from marc as _mat
as select from marc as _mat
//include materials of all field logistics remote plants
inner join flog_plant as _FlRemotePlant on _mat.werks = _FlRemotePlant.werks
{
key _mat.matnr as Material,
key _mat.werks as Plant,
_mat.xchar as IsInternalBatchManaged,
_mat.bwtty as InventoryValuationCategory,
_mat.sernp as SerialNumberProfile,
_FlRemotePlant.reswk as SupplierPlant
}
//
////remove distinct
//define view I_FldLogsMaterialSupplyProcess
// as select
// _mat.matnr as Material,
// _FlRemotePlant.werks as Plant,
// _mat.xchar as IsInternalBatchManaged,
// _mat.bwtty as InventoryValuationCategory,
// _mat.sernp as SerialNumberProfile
// from marc _mat
// inner join flog_plant _FlRemotePlant on _mat.werks = _FlRemotePlant.werks
// group by
// _mat.matnr,
// _FlRemotePlant.werks,
// _mat.xchar,
// _mat.bwtty,
// _mat.sernp
//
// define view I_FldLogsMaterialSupplyProcess as select from I_FldLogsBookStock as _FlRemotePlantMat
// inner join marc as _mat on _mat.matnr = _FlRemotePlantMat.Material
// {
//
// key _mat.matnr as Material,
// _FlRemotePlantMat.FldLogsRemotePlant as Plant,
// _mat.xchar as IsInternalBatchManaged,
// _mat.bwtty as InventoryValuationCategory,
// _mat.sernp as SerialNumberProfile
//
//
//
//
// }
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FLOG_PLANT",
"MARC"
],
"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