P_DocNumberPerSupplier

DDL: P_DOCNUMBERPERSUPPLIER Type: view_entity CONSUMPTION

P_DocNumberPerSupplier is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (P_SupplierDocList) and exposes 2 fields with key field Supplier.

Data Sources (1)

SourceAliasJoin Type
P_SupplierDocList P_SupplierDocList from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.private true view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier
NumberOfDocuments
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@VDM.private:true 
@AccessControl.personalData.blocking: #REQUIRED
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
define view entity P_DocNumberPerSupplier



  as select  from P_SupplierDocList
  
{

key Supplier,
sum(NumberOfDocument) as NumberOfDocuments

}

group by Supplier





/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_SUPPLIERDOCLIST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/