Analytics Catalog/SAP S/4HANA/Currency and ledgers
Explore the catalogModulesEnterprise modelOpen items as of a past dateGeneral ledgerNo history by design
SAP S/4HANA · Finance · Editorial

One amount, four valid answers

Ask a controller their first question of any SAP report. It is this: which currency, which ledger? The universal journal stores every posting in several currencies and across parallel ledgers, so one revenue figure is several valid numbers, and a report naming neither is unusable.

RuleCarry ledger and currency type as explicit dimensions, exactly as the journal stores them, and qualify every amount on the face of the report.
Neverbuild a single-currency, single-ledger cube. It answers the wrong question half the time and cannot say which half.
One journal line the universal journal Currencies x ledgers local, group; leading, parallel Qualified amount both named, one number
An amount is not a number until its currency type and its ledger are named. The journal stores all of them; the report must pick and say which.
Why one number is not one numberthe journal stores many, the report names none.

The universal journal stores every posting in several currency types at once, the company-code currency and the group currency among them, and across parallel ledgers, the leading ledger and one or more parallels for a second accounting principle. So a single revenue posting is already several stored amounts before anyone reports on it.

A cube built on a single-currency, single-ledger example looks clean and answers the wrong question half the time. The controller’s first question of any figure is which currency and which ledger, and a report that cannot say is not usable for the close, the consolidation, or the audit.

One amount, four valid answersthe same revenue, by ledger and currency.
Ledger, principleCurrency typeRevenue
0L leading, IFRSCompany code EUR1,000,000.00
0L leading, IFRSGroup USD1,080,000.00
2L parallel, local basisCompany code EUR985,000.00
2L parallel, local basisGroup USD1,063,800.00

Four valid numbers for one revenue. The group amounts are the company-code amounts at the illustrative 1.08 rate; the parallel-ledger amounts differ from the leading by a recognition difference between accounting principles. Every one is correct, for a different question, and a figure quoted without both labels could be any of them. Sample values are illustrative, never client data.

The owned answercarry both as dimensions; qualify every amount.

Land the journal with ledger and currency type as explicit dimensions, exactly as they are stored, and never collapse them in the model. Every fact row is then qualified: a trend states its ledger and its currency on the face, group-currency consolidation and the parallel-ledger view are filters, and no one has to ask which number they are looking at.

-- revenue by ledger and currency type: every amount qualified
SELECT ledger, currency_type, SUM(amount) AS revenue
FROM fct_universal_journal
WHERE account_group = 'revenue' AND fiscal_period = '2026-05'
GROUP BY 1, 2 ORDER BY 1, 2

The single-currency cube is the trap this catalog documents in another shape: a model that drops a dimension the source carries. Keep the ledger and the currency, and the SAP number stops being a guess about which number it is. It pairs with the enterprise model, where these dimensions are shared across the finance stars.

Use case
Problem
SAP figures are quoted without stating currency type or ledger, so one revenue number is really four and no report can say which one it shows.
What we build
A journal model carrying ledger and currency type as explicit dimensions, never collapsed, so every amount is qualified.
What you get
Trends that state their currency and ledger, consolidation and parallel-ledger views as filters, and the controller’s first question answered on the face.
Which currency and which ledger is that SAP number in?
We land the journal with both as dimensions, so every amount says which it is.
Talk to us
Terms on this page
SAP
The vendor. Systems, Applications, and Products in data processing.
HANA
SAP’s in-memory database, the platform S/4 runs on.
ERP
Enterprise resource planning, the system of record for operations and finance.
ACDOCA
The universal journal table storing every posting in multiple currencies and ledgers.
IFRS
International Financial Reporting Standards, one accounting principle a ledger may follow.
GAAP
Generally accepted accounting principles, a local basis a parallel ledger may follow.
currency type
A stored currency view of an amount: company-code (local) or group.
parallel ledger
A ledger kept alongside the leading one for a second accounting principle.
leading ledger
The primary ledger, often 0L, the default reporting basis.
group currency
The corporate reporting currency for consolidation.