A_ProductPlantForecasting

DDL: A_PRODUCTPLANTFORECASTING SQL: APRODPLANTFRCST Type: view COMPOSITE Package: VDM_MD_PRODUCT_API_V1

Forecasting Data

A_ProductPlantForecasting is a Composite CDS View that provides data about "Forecasting Data" in SAP S/4HANA. It reads from 1 data source (I_ProductPlantForecast) and exposes 7 fields with key fields Product, Plant. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_API_V1.

Data Sources (1)

SourceAliasJoin Type
I_ProductPlantForecast I_ProductPlantForecast from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Product _Product $projection.Product = _Product.Product

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName APRODPLANTFRCST view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
EndUserText.label Forecasting Data view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Product Product
KEY Plant Plant
ConsumptionRefUsageEndDate ConsumptionRefUsageEndDate
ConsumptionQtyMultiplier ConsumptionQtyMultiplier
ConsumptionReferenceProduct ConsumptionReferenceProduct
ConsumptionReferencePlant ConsumptionReferencePlant
_Product _Product
@AbapCatalog.sqlViewName: 'APRODPLANTFRCST'
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.createEnabled:true
@ObjectModel.updateEnabled:true
//@ObjectModel.deleteEnabled:true

@EndUserText.label: 'Forecasting Data'

define view A_ProductPlantForecasting
  as select from I_ProductPlantForecast
  association [1..1] to A_Product as _Product on $projection.Product = _Product.Product
{
  key Product,
  key Plant,
      ConsumptionRefUsageEndDate,
      ConsumptionQtyMultiplier,
      ConsumptionReferenceProduct,
      ConsumptionReferencePlant,
      _Product
}