Deprecated
This CDS view is deprecated in S/4HANA. Use I_TaxCode instead. View all deprecated CDS views →

I_SAFTVatCode

DDL: I_SAFTVATCODE SQL: ISAFTVATCODE Type: view COMPOSITE

SAFT Vat Codes

I_SAFTVatCode is a Composite CDS View that provides data about "SAFT Vat Codes" in SAP S/4HANA. It reads from 4 data sources (I_CompanyCode, I_Country, I_SAFTTaxAcctDetermination, I_TaxCode) and exposes 10 fields with key fields CompanyCode, TaxItemClassification, TaxCode, Country, ChartOfAccounts.

Data Sources (4)

SourceAliasJoin Type
I_CompanyCode CompanyCode inner
I_Country Country inner
I_SAFTTaxAcctDetermination TaxAcctDetermination inner
I_TaxCode TaxCode from

Parameters (1)

NameTypeDefault
P_CompanyCode bukrs

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISAFTVATCODE 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 #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SAFT Vat Codes view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_TaxCode view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_CompanyCode CompanyCode Receiver Company Code
KEY TaxItemClassification I_SAFTTaxAcctDetermination TaxItemClassification Transaction
KEY TaxCode I_TaxCode TaxCode Tax Code
KEY Country I_CompanyCode Country Venue: Ctry/Reg
KEY ChartOfAccounts I_SAFTTaxAcctDetermination ChartOfAccounts Node Class
TaxCalculationProcedure I_TaxCode TaxCalculationProcedure Tax Procedure
GLAccount I_SAFTTaxAcctDetermination GLAccount General Ledger
TaxCodeName
_TaxCalculationProcedure _TaxCalculationProcedure
_Country I_CompanyCode _Country

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SAFTVatCode.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISAFTVATCODE
-- Parameters: P_CompanyCode : bukrs

CREATE VIEW I_SAFTVatCode AS
SELECT
  CompanyCode.CompanyCode AS CompanyCode,
  TaxAcctDetermination.TaxItemClassification AS TaxItemClassification,
  TaxCode.TaxCode AS TaxCode,
  CompanyCode.Country AS Country,
  TaxAcctDetermination.ChartOfAccounts AS ChartOfAccounts,
  TaxCode.TaxCalculationProcedure AS TaxCalculationProcedure,
  TaxAcctDetermination.GLAccount AS GLAccount,
  coalesce(TaxCode._Text[1: Language = $session.system_language].TaxCodeName, '') AS TaxCodeName,
  CompanyCode._Country AS _Country
FROM I_TaxCode AS TaxCode
INNER JOIN I_CompanyCode AS CompanyCode ON /* join condition not captured in parsed metadata */
INNER JOIN I_Country AS Country ON /* join condition not captured in parsed metadata */
INNER JOIN I_SAFTTaxAcctDetermination AS TaxAcctDetermination ON /* join condition not captured in parsed metadata */
;