FISVD_EXTERNALTAX_CHGLOGPROJ

DDL: FISVD_EXTERNALTAX_CHGLOGPROJ SQL: FISCDSCHGPROJ Type: view

List of error tRFC moved out from queue

FISVD_EXTERNALTAX_CHGLOGPROJ is a CDS View that provides data about "List of error tRFC moved out from queue" in SAP S/4HANA. It reads from 3 data sources (dd07t, I_ChangeDocument, I_ChangeDocumentItem) and exposes 4 fields with key field UniqueKey.

Data Sources (3)

SourceAliasJoin Type
dd07t _action left_outer
I_ChangeDocument _doch left_outer
I_ChangeDocumentItem _doci from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName FISCDSCHGPROJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label List of error tRFC moved out from queue view
ObjectModel.usageType.serviceQuality #P view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UniqueKey
CreateBy User Name
Action ChangeDocNewFieldValue New Value
ActionDes

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_CHGLOGPROJ.
-- 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: FISCDSCHGPROJ

CREATE VIEW FISVD_EXTERNALTAX_CHGLOGPROJ AS
SELECT
  cast(_doci.ChangeDocObject as fis_etxdc_ukey) AS UniqueKey,
  cast(CreatedByUser as fis_etxdc_puser) AS CreateBy,
  ChangeDocNewFieldValue AS Action,
  cast(_action.ddtext as fis_etxdc_action) AS ActionDes
FROM I_ChangeDocumentItem AS _doci
LEFT OUTER JOIN I_ChangeDocument AS _doch ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd07t AS _action ON /* join condition not captured in parsed metadata */
;