Sadl_V_Perf_Curr

DDL: SADL_V_PERF_CURR SQL: SADL_V_PRF_CUR Type: view

Currency Codes

Sadl_V_Perf_Curr is a CDS View that provides data about "Currency Codes" in SAP S/4HANA. It reads from 1 data source (tcurc) and exposes 2 fields with key field Currency. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tcurc tcurc from

Associations (1)

CardinalityTargetAliasCondition
[0..*] Sadl_V_Perf_Curr_T _Text $projection.Currency = _Text.Currency

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_PRF_CUR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Currency Codes view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Currency waers Transaction Currency
_Text _Text

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 Sadl_V_Perf_Curr.
-- 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: SADL_V_PRF_CUR

CREATE VIEW Sadl_V_Perf_Curr AS
SELECT
  waers AS Currency
FROM tcurc
LEFT OUTER JOIN Sadl_V_Perf_Curr_T AS _Text ON Currency = _Text.Currency  -- association [0..*]
;