P_CollsInvoiceRelDCCounter

DDL: P_COLLSINVOICERELDCCOUNTER Type: view COMPOSITE Package: ODATA_PROCESS_RECEIVABLES

Related Dispute Case Counter

P_CollsInvoiceRelDCCounter is a Composite CDS View that provides data about "Related Dispute Case Counter" in SAP S/4HANA. It reads from 1 data source (I_CollsInvoiceRelatedDsputCase) and exposes 4 fields with key fields LogicalSystem, ObjectType, ObjectKey. Part of development package ODATA_PROCESS_RECEIVABLES.

Data Sources (1)

SourceAliasJoin Type
I_CollsInvoiceRelatedDsputCase I_CollsInvoiceRelatedDsputCase from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCOLLINVDCCNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey ObjectKey view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LogicalSystem LogicalSystem
KEY ObjectType ObjectType
KEY ObjectKey ObjectKey
NumberOfDisputeCases
@AbapCatalog: { sqlViewName: 'PCOLLINVDCCNT',
                compiler:    { compareFilter: true },
                preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK }
@VDM: { viewType: #COMPOSITE,
        private:  true }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType:         { serviceQuality: #X,
                                     sizeCategory:   #XL,
                                     dataClass:      #TRANSACTIONAL },
                representativeKey: 'ObjectKey' }

define view P_CollsInvoiceRelDCCounter
  as select from I_CollsInvoiceRelatedDsputCase
{
  key LogicalSystem,
  key ObjectType,
  key ObjectKey,
      sum( NumberOfDisputeCases ) as NumberOfDisputeCases

}
group by
  LogicalSystem,
  ObjectType,
  ObjectKey