A_CnsldtnLocalCurrencyT
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CurrencyText | I_CurrencyText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_CnsldtnTransactionCurrency | _CnsldtnTransactionCurrency | $projection.Currency = _CnsldtnTransactionCurrency.Currency |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | Currency | Currency | ||
| _CnsldtnTransactionCurrency | _CnsldtnTransactionCurrency | |||
| LocalCurrencyText |
@AbapCatalog:{
sqlViewName: 'ACSLOCALCRCYT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #L},
dataCategory: #TEXT,
representativeKey: 'Currency'
}
@VDM:{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@EndUserText.label: 'Local Currency - Text'
@OData.entitySet.name: 'LocalCurrencyText'
define view A_CnsldtnLocalCurrencyT
as select from I_CurrencyText
association [1..1] to A_CnsldtnTransactionCurrency as _CnsldtnTransactionCurrency on $projection.Currency = _CnsldtnTransactionCurrency.Currency
{
@Semantics.language: true
key Language as Language,
@Semantics.currencyCode: true
@ObjectModel.foreignKey.association: '_CnsldtnTransactionCurrency'
key Currency as Currency,
_CnsldtnTransactionCurrency,
@Semantics.text: true
cast(CurrencyName as fincs_rhcur_t preserving type) as LocalCurrencyText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CURRENCYTEXT"
],
"ASSOCIATED":
[
"A_CNSLDTNTRANSACTIONCURRENCY"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA