I_SAFTBillingHeaderTaxCheck

DDL: I_SAFTBILLINGHEADERTAXCHECK SQL: ISAFTBILLHTAXCK Type: view BASIC Package: GLO_FIN_IS_SAFT_GEN

SAF-T Billing Header Tax

I_SAFTBillingHeaderTaxCheck is a Basic CDS View that provides data about "SAF-T Billing Header Tax" in SAP S/4HANA. Part of development package GLO_FIN_IS_SAFT_GEN.

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISAFTBILLHTAXCK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SAF-T Billing Header Tax view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument BillingDocument
TransactionCurrency TransactionCurrency
ConditionAmount
@AbapCatalog.sqlViewName: 'ISAFTBILLHTAXCK'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'SAF-T Billing Header Tax'
define view I_SAFTBillingHeaderTaxCheck as select distinct from I_SAFTBillingItemTaxCheck
  
  
{
     key BillingDocument,
     
     TransactionCurrency,

     @Semantics.amount.currencyCode: 'TransactionCurrency'
     sum(ConditionAmount) as ConditionAmount
     
} 
group by BillingDocument,
         TransactionCurrency