I_ALLOCATIONTABLEBYPRODUCT

CDS View

Allocation Table by Product

I_ALLOCATIONTABLEBYPRODUCT is a CDS View in S/4HANA. Allocation Table by Product. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_ProductObjPgAllocationTable view from CONSUMPTION Product Object Page - Allocation Table
@AbapCatalog.sqlViewName: 'IALLOCTBLBYPRD'
@EndUserText.label: 'Allocation Table by Product'

@AbapCatalog.compiler.compareFilter: true

@AccessControl: {
    authorizationCheck: #CHECK,
    personalData.blocking: #NOT_REQUIRED
}

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #COMPOSITE
@ObjectModel: {
    representativeKey: 'AllocationTable',
    usageType: {
        serviceQuality: #A,
        sizeCategory : #L,
        dataClass: #TRANSACTIONAL
   }
}

define view I_AllocationTableByProduct
  as select distinct from I_AllocationTableItem
{
  key Product,
  key AllocationTable,

      _Product,
      _AllocationTable
}