FGL_GLT3_CUR

DDL: FGL_GLT3_CUR SQL: FGLV_GLT3_CUR Type: view

Currency Handling (Source ACDOCA)

FGL_GLT3_CUR is a CDS View that provides data about "Currency Handling (Source ACDOCA)" in SAP S/4HANA. It reads from 4 data sources (fisv_ldcmp_cur, finsc_ledger, FINS_T001A, t881).

Data Sources (4)

SourceAliasJoin Type
fisv_ldcmp_cur cur inner
finsc_ledger l inner
FINS_T001A t001a left_outer
t881 t881 inner

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName FGLV_GLT3_CUR view
EndUserText.label Currency Handling (Source ACDOCA) view
ObjectModel.usageType.serviceQuality #P view

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 FGL_GLT3_CUR.
-- 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: FGLV_GLT3_CUR

CREATE VIEW FGL_GLT3_CUR AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN t881 ON /* join condition not captured in parsed metadata */
INNER JOIN fisv_ldcmp_cur AS cur ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_ledger AS l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN FINS_T001A AS t001a ON /* join condition not captured in parsed metadata */
;