P_DRFBATCHMCHA

DDL: P_DRFBATCHMCHA SQL: PDRFBATCHMCHA Type: view BASIC Package: LO_BM_BATCH_SERVICE_DRF

DRF filter for batches if batches are unique at plant level

P_DRFBATCHMCHA is a Basic CDS View that provides data about "DRF filter for batches if batches are unique at plant level" in SAP S/4HANA. It reads from 2 data sources (mcha, mara) and exposes 5 fields with key fields matnr, werks, charg. Part of development package LO_BM_BATCH_SERVICE_DRF.

Data Sources (2)

SourceAliasJoin Type
mcha mcha from
mara md inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PDRFBATCHMCHA view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
VDM.private true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY matnr mcha matnr
KEY werks mcha werks
KEY charg mcha charg
matkl mara matkl
mtart mara mtart
@AbapCatalog.sqlViewName: 'PDRFBATCHMCHA'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass:#MASTER

@VDM.viewType: #BASIC
@VDM.private: true
define view P_DRFBATCHMCHA
  as select from  mcha
    inner join mara  as md   on  mcha.matnr = md.matnr
{
  key mcha.matnr as matnr,
  key mcha.werks as werks,
  key mcha.charg as charg,
  md.matkl,
  md.mtart
}