P_NL_SAFTVATCode

DDL: P_NL_SAFTVATCODE SQL: PNLSAFTVATCODE Type: view COMPOSITE

P_NL_SAFTVATCode is a Composite CDS View in SAP S/4HANA. It reads from 8 data sources and exposes 19 fields with key fields CompanyCode, TaxItemClassification, TaxCode, Country, ChartOfAccounts.

Data Sources (8)

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

Parameters (1)

NameTypeDefault
P_CompanyCode bukrs

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PNLSAFTVATCODE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_CompanyCode CompanyCode Receiver Company Code
KEY TaxItemClassification I_NL_TaxAbroadAccountDetn TaxItemClassification Transaction
KEY TaxCode I_TaxCode TaxCode Tax Code
KEY Country I_CompanyCode Country Venue: Ctry/Reg
KEY ChartOfAccounts I_NL_TaxAbroadAccountDetn ChartOfAccounts Node Class
TaxCalculationProcedure I_TaxCode TaxCalculationProcedure Tax Procedure
GLAccount I_NL_TaxAbroadAccountDetn GLAccount General Ledger
TaxCodeName
_TaxCalculationProcedure I_TaxCode _TaxCalculationProcedure
CompanyCode Receiver Company Code
KEY TaxItemClassification I_NL_TaxAbroadAccountDetn TaxItemClassification Transaction
KEY TaxCode I_TaxCode TaxCode Tax Code
KEY Country I_CompanyCode Country Venue: Ctry/Reg
KEY ChartOfAccounts I_NL_TaxAbroadAccountDetn ChartOfAccounts Node Class
TaxCalculationProcedure I_TaxCode TaxCalculationProcedure Tax Procedure
GLAccount I_NL_TaxAbroadAccountDetn GLAccount General Ledger
TaxCodeName
_TaxCalculationProcedure I_TaxCode _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 P_NL_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: PNLSAFTVATCODE
-- Parameters: P_CompanyCode : bukrs

CREATE VIEW P_NL_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,
  TaxCode._TaxCalculationProcedure AS _TaxCalculationProcedure,
  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 */
INNER JOIN I_NL_TaxAbroadAccountDetn AS TaxAcctDetermination ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): I_TaxCode
;