P_TaxRecon10

DDL: P_TAXRECON10 SQL: PTAXRECON10 Type: view BASIC

P_TaxRecon10 is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (bseg) and exposes 6 fields.

Data Sources (1)

SourceAliasJoin Type
bseg bseg from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PTAXRECON10 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
bukrs bseg bukrs Value
belnr belnr SD Document
gjahr gjahr Settlement Year
xmwsn xmwsn Net Tax Base
xskfn xskfn Net Discount Base
zbd1p zbd1p Max. Cash Dis. (%)

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_TaxRecon10.
-- 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: PTAXRECON10

CREATE VIEW P_TaxRecon10 AS
SELECT
  bseg.bukrs AS bukrs,
  belnr,
  gjahr,
  xmwsn,
  xskfn,
  zbd1p
FROM bseg
;