A_CnsldtnLocalCurrencyT

DDL: A_CNSLDTNLOCALCURRENCYT Type: view BASIC

Local Currency - Text

A_CnsldtnLocalCurrencyT is a Basic CDS View that provides data about "Local Currency - Text" in SAP S/4HANA. It reads from 1 data source (I_CurrencyText) and exposes 4 fields with key fields Language, Currency. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CurrencyText I_CurrencyText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_CnsldtnTransactionCurrency _CnsldtnTransactionCurrency $projection.Currency = _CnsldtnTransactionCurrency.Currency

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSLOCALCRCYT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Currency view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Local Currency - Text view
OData.entitySet.name LocalCurrencyText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY Currency Currency Valuation Crcy
_CnsldtnTransactionCurrency _CnsldtnTransactionCurrency
LocalCurrencyText

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 A_CnsldtnLocalCurrencyT.
-- 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.

CREATE VIEW A_CnsldtnLocalCurrencyT AS
SELECT
  Language,
  Currency,
  cast(CurrencyName as fincs_rhcur_t preserving type) AS LocalCurrencyText
FROM I_CurrencyText
LEFT OUTER JOIN A_CnsldtnTransactionCurrency AS _CnsldtnTransactionCurrency ON Currency = _CnsldtnTransactionCurrency.Currency  -- association [1..1]
;