FISVD_EXTERNALTAX_ETXDCH_NBKPF

DDL: FISVD_EXTERNALTAX_ETXDCH_NBKPF SQL: FISCDSETXDCHNBKP Type: view

TAX EXPOSTING MANAGE

FISVD_EXTERNALTAX_ETXDCH_NBKPF is a CDS View that provides data about "TAX EXPOSTING MANAGE" in SAP S/4HANA. It reads from 3 data sources (dd07t, etxdch, etxdcf) and exposes 15 fields with key field externaldoc.

Data Sources (3)

SourceAliasJoin Type
dd07t _action left_outer
etxdch etxdch from
etxdcf etxf left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName FISCDSETXDCHNBKP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label TAX EXPOSTING MANAGE view
ObjectModel.usageType.serviceQuality #P view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY externaldoc etxdch docnr Well doc.no.
uniquekey tid Transaction ID for updating external tax system
referencedoc awref Reference Doc.
documenttype awtyp Reference Document Type
process_date docstatuschanged Date status changed
username usnam User Name
errorcode errcode Output: Error number
errorline error_line Line number
errormessage errmsg Tax error messages
action rec_status Activity
actiondes dd07t ddtext Short text
feed_count feed_count Count of Comments
companycode etxdcf bukrs Value
belnr etxdcf belnr SD Document
fiscalyear etxdcf gjahr Settlement Year

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 FISVD_EXTERNALTAX_ETXDCH_NBKPF.
-- 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: FISCDSETXDCHNBKP

CREATE VIEW FISVD_EXTERNALTAX_ETXDCH_NBKPF AS
SELECT
  etxdch.docnr AS externaldoc,
  tid AS uniquekey,
  awref AS referencedoc,
  awtyp AS documenttype,
  docstatuschanged AS process_date,
  usnam AS username,
  errcode AS errorcode,
  error_line AS errorline,
  errmsg AS errormessage,
  rec_status AS action,
  _action.ddtext AS actiondes,
  feed_count,
  etxf.bukrs AS companycode,
  etxf.belnr AS belnr,
  etxf.gjahr AS fiscalyear
FROM etxdch
LEFT OUTER JOIN dd07t AS _action ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN etxdcf AS etxf ON /* join condition not captured in parsed metadata */
;