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, P_ProductPlantBasic) and exposes 6 fields with key fields Material, Plant. Part of development package FLOG_RETURN.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| flog_plant | _FlRemotePlant | inner |
| P_ProductPlantBasic | _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 |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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