I_PL_SAFTTaxCodeSpecialMap

DDL: I_PL_SAFTTAXCODESPECIALMAP SQL: IPLSAFTMAPTAXSP Type: view BASIC Package: GLO_FIN_IS_SAFT_PL

SAFT PL Map Tx Code to Special Flds

I_PL_SAFTTaxCodeSpecialMap is a Basic CDS View that provides data about "SAFT PL Map Tx Code to Special Flds" in SAP S/4HANA. It reads from 1 data source (snc_pl_vat_taxsp) and exposes 11 fields with key fields PL_SAFTVatVersion, TaxCalculationProcedure, TaxCode, AccountKeyForGLAccount, PL_SAFTTaxBusinessCode. Part of development package GLO_FIN_IS_SAFT_PL.

Data Sources (1)

SourceAliasJoin Type
snc_pl_vat_taxsp snc_pl_vat_taxsp from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPLSAFTMAPTAXSP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #D view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SAFT PL Map Tx Code to Special Flds view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY PL_SAFTVatVersion vat_version File Type Version
KEY TaxCalculationProcedure kalsm Search Proced.
KEY TaxCode mwskz Tax Code
KEY AccountKeyForGLAccount kvsl1 Account Key
KEY PL_SAFTTaxBusinessCode bp_indicator Business Indicator
KEY EndDate endda Valid To
StartDate begda Valid From
PL_SAFTDocumentType doc_type VAT Document Type
PL_SAFTTaxItemHasMarginAmount has_margin_amount Has Margin Amount
PL_SAFTAddlClassification additional_classif Add. Classification
PL_SAFTInvcExclRsnFromTotals excl_from_totals Exclude from Totals

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_PL_SAFTTaxCodeSpecialMap.
-- 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: IPLSAFTMAPTAXSP

CREATE VIEW I_PL_SAFTTaxCodeSpecialMap AS
SELECT
  vat_version AS PL_SAFTVatVersion,
  kalsm AS TaxCalculationProcedure,
  mwskz AS TaxCode,
  kvsl1 AS AccountKeyForGLAccount,
  bp_indicator AS PL_SAFTTaxBusinessCode,
  endda AS EndDate,
  begda AS StartDate,
  doc_type AS PL_SAFTDocumentType,
  has_margin_amount AS PL_SAFTTaxItemHasMarginAmount,
  additional_classif AS PL_SAFTAddlClassification,
  excl_from_totals AS PL_SAFTInvcExclRsnFromTotals
FROM snc_pl_vat_taxsp
;