P_ARLineItem_Sum_Bset

DDL: P_ARLINEITEM_SUM_BSET SQL: PARLIT_SUMBSET Type: view BASIC Package: FINS_FIS_APAR_APPS

Aggregated (summed) Tax Amounts

P_ARLineItem_Sum_Bset is a Basic CDS View that provides data about "Aggregated (summed) Tax Amounts" in SAP S/4HANA. It reads from 1 data source (P_Bset) and exposes 4 fields with key fields CompanyCode, AccountingDocument, FiscalYear. Part of development package FINS_FIS_APAR_APPS.

Data Sources (1)

SourceAliasJoin Type
P_Bset P_Bset from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PARLIT_SUMBSET view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY AccountingDocument AccountingDocument
KEY FiscalYear FiscalYear
TaxAmountInCoCodeCrcy
@AbapCatalog.sqlViewName: 'PARLIT_SUMBSET'
@VDM.viewType: #BASIC
@VDM.private:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_ARLineItem_Sum_Bset
  as select from P_Bset
{
  key CompanyCode                     as CompanyCode,
  key AccountingDocument              as AccountingDocument,
  key FiscalYear                      as FiscalYear,

      sum(TaxAmountInCoCodeCrcy)      as TaxAmountInCoCodeCrcy
}
group by
  CompanyCode,
  AccountingDocument,
  FiscalYear