I_FldLogsMaterialSupplyProcess

DDL: I_FLDLOGSMATERIALSUPPLYPROCESS SQL: IFLDMATSUPPLY Type: view BASIC

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)

SourceAliasJoin Type
flog_plant _FlRemotePlant inner
marc _mat from

Annotations (9)

NameValueLevelField
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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material marc matnr
KEY Plant marc werks
IsInternalBatchManaged marc xchar
InventoryValuationCategory marc bwtty
SerialNumberProfile marc sernp
SupplierPlant flog_plant reswk
@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":""
}
}*/