P_TaxRecon04B

DDL: P_TAXRECON04B SQL: PTAXRECON04B Type: view BASIC

P_TaxRecon04B is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (P_TaxRecon05) and exposes 8 fields.

Data Sources (1)

SourceAliasJoin Type
P_TaxRecon05 P_TaxRecon05 from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PTAXRECON04B 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 (8)

KeyFieldSource TableSource FieldDescription
bukrs bukrs Value
belnr belnr SD Document
gjahr gjahr Settlement Year
mysum
h_hwaer h_hwaer Local Currency
h_budat h_budat Posting Date
h_bldat h_bldat Document Date
h_monat h_monat Period

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_TaxRecon04B.
-- 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: PTAXRECON04B

CREATE VIEW P_TaxRecon04B AS
SELECT
  bukrs,
  belnr,
  gjahr,
  cast ( sum( posted) as abap.curr (23,2)) AS mysum,
  h_hwaer,
  h_budat,
  h_bldat,
  h_monat
FROM P_TaxRecon05
;