I_PHYSINVTRYINDBATCHSTORLOC

CDS View

Physical Inventory Indicators of Batches on Storage Location

I_PHYSINVTRYINDBATCHSTORLOC is a CDS View in S/4HANA. Physical Inventory Indicators of Batches on Storage Location. It contains 4 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
P_PhysInvtryNotPostedBatch_L1 view_entity from COMPOSITE Not posted batch master
P_PhysInvtryNotPostedBatch_L1 view_entity union COMPOSITE Not posted batch master
P_ProductBatchByInvStockType view_entity from COMPOSITE Batch Products united by different Stock Types
P_ProductBatchByInvStockType view_entity union COMPOSITE Batch Products united by different Stock Types

Fields (4)

KeyField CDS FieldsUsed in Views
KEY Batch Batch 2
KEY Material Material 2
KEY Plant Plant 2
KEY StorageLocation StorageLocation 2
@VDM: { 
          viewType: #BASIC,
          lifecycle.contract.type: #SAP_INTERNAL_API
      }     
@ObjectModel.usageType: { 
                             serviceQuality: #A,
                             sizeCategory : #L,
                             dataClass: #TRANSACTIONAL
                        } 
                        
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Physical Inventory Indicators of Batches on Storage Location'

define view entity I_PhysInvtryIndBatchStorLoc as select from mchb {

  key matnr as Material,
  key werks as Plant,
  key lgort as StorageLocation,
  key charg as Batch,
  
  kzicl as InvtryCurrentYearStockInd,
  kzicq as InvtryQualInspCurrentYrStkInd,
  kzice as InvtryRestrictedUseStockInd,
  kzics as InventoryBlockStockInd,
  kzvcl as InventoryStockPrevPeriod,
  kzvcq as InvtryStockQltyInspPrevPeriod,
  kzvce as InvtryRestStockPrevPeriodInd,
  kzvcs as HasInvtryBlockStockPrevPeriod,
  
  ersda as CreationDate,
  
  lvorm as IsMarkedForDeletion
    
}