P_CADocumentGLItemCount

DDL: P_CADOCUMENTGLITEMCOUNT Type: view_entity COMPOSITE Package: ODATA_O2C_FICA_DOCUMENT_MANAGE

Count of Document GL Items

P_CADocumentGLItemCount is a Composite CDS View that provides data about "Count of Document GL Items" in SAP S/4HANA. It reads from 1 data source (I_CADocumentGLItem) and exposes 2 fields with key field CADocumentNumber. Part of development package ODATA_O2C_FICA_DOCUMENT_MANAGE.

Data Sources (1)

SourceAliasJoin Type
I_CADocumentGLItem I_CADocumentGLItem from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Count of Document GL Items view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CADocumentNumber CADocumentNumber
NumberOfCADocumentGLItems
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Count of Document GL Items'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #P,
  sizeCategory: #XXL,
  dataClass: #TRANSACTIONAL
}

@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_CADocumentGLItemCount as select from I_CADocumentGLItem {
  key CADocumentNumber,
  count(*)                                                   as NumberOfCADocumentGLItems
}
group by
  CADocumentNumber