I_AR_TAXCLASSIDENTIFICATION
Tax Class Identification
I_AR_TAXCLASSIDENTIFICATION is a CDS View in S/4HANA. Tax Class Identification. It contains 2 fields. 4 CDS views read from this table.
CDS Views using this table (4)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_AR_StRpVATForm731ItemC | view | left_outer | CONSUMPTION | Argentina VAT Form 731 |
| C_AR_StRpVATForm731ItemLogC | view | left_outer | CONSUMPTION | Argentina VAT Form 731 with Rptd item log data |
| I_AR_StRpTaxItem | view | left_outer | COMPOSITE | Argentina VAT Tax Line Item Calculation |
| P_AR_TaxItem | view | left_outer | CONSUMPTION |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| GLBusinessTransactionType | GLBusinessTransactionType | 2 | |
| StRpTaxClassification | TaxClassificationCategory | 1 |
@AbapCatalog.sqlViewName: 'IARTAXCLASS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Tax Class Identification'
@Metadata.ignorePropagatedAnnotations:true
define view I_AR_TaxClassIdentification
as select from fiarc_taxid
association [1..*] to I_TaxCodeText as _TaxCodeText on $projection.TaxCode = _TaxCodeText.TaxCode
and $projection.TaxCalculationProcedure = _TaxCodeText.TaxCalculationProcedure
association [0..1] to I_TaxCalculationProcedure as _TaxCalculationProcedure on $projection.TaxCalculationProcedure = _TaxCalculationProcedure.TaxCalculationProcedure
{
@ObjectModel.foreignKey.association: '_TaxCalculationProcedure' //Inserted by VDM CDS Suite Plugin
@ObjectModel.text.association: '_TaxCodeText'
key kalsm as TaxCalculationProcedure,
@ObjectModel.text.association: '_TaxCodeText'
key mwskz as TaxCode,
key ktosl as TransactionTypeDetermination,
j_1ataxid as StRpTaxClassification,
regio as AddressRegion,
counc as CustomerCounty,
j_1amjc as MunicipalJurisdiction,
j_1arfz as ZeroVATRsn,
prorated_ind as TaxIsProRated,
trans_type as GLBusinessTransactionType, //change
_TaxCodeText[1:Language = $session.system_language].TaxCodeName,
_TaxCodeText,
_TaxCalculationProcedure
}