I_MultiCurrencyAccounting

DDL: I_MULTICURRENCYACCOUNTING SQL: IFIMCA Type: view BASIC

Multiple Currency Accounting

I_MultiCurrencyAccounting (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_MultiCurrencyAccounting is a Basic CDS View (Dimension) that provides data about "Multiple Currency Accounting" in SAP S/4HANA. It reads from 1 data source (gle_mca_tmcakey) and exposes 2 fields with key field MultiCurrencyAccountingCode. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Purpose
This CDS view provides access to the master data of multicurrency accounting. This CDS view provides the prerequisites for answering the following business questions: How many multicurrency accounting keys are defined? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Further important fields Important fields in this view include the following: MultiCurrencyAccountingCode

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the master data of multicurrency accounting. This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>How many multicurrency accounting (MCA) keys are defined?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
gle_mca_tmcakey gle_mca_tmcakey from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MultiCurrencyAccountingText _Text $projection.MultiCurrencyAccountingCode = _Text.MultiCurrencyAccountingCode

Annotations (13)

NameValueLevelField
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IFIMCA view
ObjectModel.representativeKey MultiCurrencyAccountingCode view
EndUserText.label Multiple Currency Accounting view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MultiCurrencyAccountingCode mcakey MCA Key
_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 I_MultiCurrencyAccounting.
-- 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: IFIMCA

CREATE VIEW I_MultiCurrencyAccounting AS
SELECT
  mcakey AS MultiCurrencyAccountingCode
FROM gle_mca_tmcakey
LEFT OUTER JOIN I_MultiCurrencyAccountingText AS _Text ON MultiCurrencyAccountingCode = _Text.MultiCurrencyAccountingCode  -- association [0..*]
;