I_MFGPROCGEXECBATCH

CDS View

Batch in Manufacturing Processing Execution

I_MFGPROCGEXECBATCH is a CDS View in S/4HANA. Batch in Manufacturing Processing Execution. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MfgProcgExecBatchStock view inner COMPOSITE Batch Stock in Manufacturing Processing Execution
@AbapCatalog.sqlViewName: 'IMPEBATCH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@Analytics.dataCategory: #DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #MIXED}
@ObjectModel.representativeKey: 'Batch'
@VDM.viewType: #COMPOSITE
@Search.searchable: true
@EndUserText.label: 'Batch in Manufacturing Processing Execution'
@Metadata.allowExtensions:true
// If one batch exists twice due to a prior change of the batch definition level (= duplicate records), 

// an additional inner join reduces the result set to the batches of the present batch definition level


/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_MfgProcgExecBatch as
  select from  P_MfgProcgExecBatch  as batch
    inner join I_BatchConfiguration as tcuch on tcuch.DefinitionOfBatchLevel = batch.DefinitionOfBatchLevel
    
    association [1..1] to I_Batch as _Batch on  $projection.Plant    = _Batch.Plant
                                            and $projection.Material = _Batch.Material
                                            and $projection.Batch    = _Batch.Batch
{
      @ObjectModel.foreignKey.association: '_Plant'
  key batch.Plant,
      @Consumption.valueHelpDefinition: [ { entity: { name: 'I_MaterialStdVH', element: 'Material' } } ]
      @ObjectModel.foreignKey.association: '_Material'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7}
  key batch.Material,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key batch.Batch,
      // Batch Level

      tcuch.DefinitionOfBatchLevel,

      // Associations

      _Plant,
      _Material,
      _Batch
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BATCHCONFIGURATION",
"P_MFGPROCGEXECBATCH"
],
"ASSOCIATED":
[
"I_BATCH",
"I_MATERIAL",
"I_PLANT"
],
"BASE":
[
"P_MFGPROCGEXECBATCH"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/