I_FldLogsMaterialSupplyProcess

DDL: I_FLDLOGSMATERIALSUPPLYPROCESS SQL: IFLDMATSUPPLY Type: view BASIC Package: FLOG_RETURN

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, P_ProductPlantBasic) and exposes 6 fields with key fields Material, Plant. Part of development package FLOG_RETURN.

Data Sources (2)

SourceAliasJoin Type
flog_plant _FlRemotePlant inner
P_ProductPlantBasic _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 P_ProductPlantBasic Product
KEY Plant P_ProductPlantBasic Plant
IsInternalBatchManaged P_ProductPlantBasic IsInternalBatchManaged
ValuationCategory P_ProductPlantBasic ValuationCategory
SerialNumberProfile P_ProductPlantBasic SerialNumberProfile
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 from P_ProductPlantBasic as _mat
    inner join   flog_plant          as _FlRemotePlant on _mat.Plant = _FlRemotePlant.werks
{

  key     _mat.Product         as Material,
  key     _mat.Plant,
          _mat.IsInternalBatchManaged,
          _mat.ValuationCategory,
          _mat.SerialNumberProfile,
          _FlRemotePlant.reswk as SupplierPlant
}