I_SchedProdnProductionVersion

DDL: I_SCHEDPRODNPRODUCTIONVERSION SQL: ISCHEDPRODVERS Type: view BASIC

Schedule Production Production Versions

I_SchedProdnProductionVersion is a Basic CDS View that provides data about "Schedule Production Production Versions" in SAP S/4HANA. It reads from 1 data source (mkal) and exposes 6 fields with key fields Material, Plant, ProductionVersion.

Data Sources (1)

SourceAliasJoin Type
mkal mkal from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISCHEDPRODVERS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Schedule Production Production Versions view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material matnr
KEY Plant werks
KEY ProductionVersion verid
ProductionLine mdv01
ProductionVersionText text1
BillOfOperationsType plnty
@AbapCatalog.sqlViewName: 'ISCHEDPRODVERS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Schedule Production Production Versions'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_SchedProdnProductionVersion as select from mkal {
  
    key matnr      as Material,
  key werks      as Plant,
  key verid      as ProductionVersion,
  mdv01  as ProductionLine,
  text1 as ProductionVersionText,
  plnty as BillOfOperationsType 
}