I_SAFTTaxRate

DDL: I_SAFTTAXRATE SQL: ISAFTTAXRATE Type: view_entity BASIC

SAF-T Tax Rate

I_SAFTTaxRate is a Basic CDS View that provides data about "SAF-T Tax Rate" in SAP S/4HANA. It reads from 3 data sources (P_PrcgCndnRecordItem, P_CndnTypeTaxClassification, I_TaxCode) and exposes 11 fields with key fields TaxCode, DepartureCountry, ConditionType, TaxCalculationProcedure, TaxType.

Data Sources (3)

SourceAliasJoin Type
P_PrcgCndnRecordItem PrcgCndnRecordItem inner
P_CndnTypeTaxClassification TaxCndnTypeClassifcation from
I_TaxCode TaxCode inner

Annotations (7)

NameValueLevelField
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #D view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label SAF-T Tax Rate view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY TaxCode P_CndnTypeTaxClassification TaxCode Tax Code
KEY DepartureCountry P_CndnTypeTaxClassification DepartureCountry Departure Country / Region
KEY ConditionType P_CndnTypeTaxClassification ConditionType Condition type
KEY TaxCalculationProcedure I_TaxCode TaxCalculationProcedure Tax Procedure
KEY TaxType I_TaxCode TaxType Tax Type
KEY ConditionValidityEndDate
ConditionValidityStartDate
TaxRate P_PrcgCndnRecordItem ConditionRateValue Condition Rate Value
ConditionRateValueUnit P_PrcgCndnRecordItem ConditionRateValueUnit Unit of Condition Rate Value
_TaxCalculationProcedure I_TaxCode _TaxCalculationProcedure
_TaxType I_TaxCode _TaxType

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_SAFTTaxRate.
-- 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: ISAFTTAXRATE

CREATE VIEW I_SAFTTaxRate AS
SELECT
  TaxCndnTypeClassifcation.TaxCode AS TaxCode,
  TaxCndnTypeClassifcation.DepartureCountry AS DepartureCountry,
  TaxCndnTypeClassifcation.ConditionType AS ConditionType,
  TaxCode.TaxCalculationProcedure AS TaxCalculationProcedure,
  TaxCode.TaxType AS TaxType,
  cast( TaxCndnTypeClassifcation.ConditionValidityEndDate as kodatbi ) AS ConditionValidityEndDate,
  cast( TaxCndnTypeClassifcation.ConditionValidityStartDate as kodatab ) AS ConditionValidityStartDate,
  PrcgCndnRecordItem.ConditionRateValue AS TaxRate,
  PrcgCndnRecordItem.ConditionRateValueUnit AS ConditionRateValueUnit,
  TaxCode._TaxCalculationProcedure AS _TaxCalculationProcedure,
  TaxCode._TaxType AS _TaxType
FROM P_CndnTypeTaxClassification AS TaxCndnTypeClassifcation
INNER JOIN I_TaxCode AS TaxCode ON /* join condition not captured in parsed metadata */
INNER JOIN P_PrcgCndnRecordItem AS PrcgCndnRecordItem ON /* join condition not captured in parsed metadata */
;