What is the impact of Parallel Accounting on system performance ?
Parallel Accounting may have an impact on system performance due to increased data volume and complexity.
Good — this slide is explaining a very important interview topic:
👉 Impact of Parallel Accounting / Parallel Ledgers on SAP performance
Let’s simplify what the trainer is saying.
First understand the base concept
In S/4HANA all accounting postings are stored in one table:
ACDOCA (Universal Journal)
Every journal entry → line items → stored in this table.
Example
If you post 1 vendor invoice → maybe 3 line items get stored.
Now introduce Ledger concept
When only Leading Ledger (0L) is active:
If you post 1 document →
System stores 1 set of line items.
Example:
Invoice has 3 lines → ACDOCA stores 3 rows.
What happens when Parallel Ledger is activated?
Suppose we activate another ledger (like IFRS ledger).
Now every posting must exist in:
Local GAAP ledger (0L)
IFRS ledger (2L)
So SAP stores two versions of the same posting.
Example:
| Ledger | Lines stored |
|---|---|
| 0L | 3 lines |
| 2L | 3 lines |
Total stored = 6 rows
👉 Data is duplicated per ledger.
Why does SAP duplicate data?
Because different ledgers may have:
Different depreciation
Different valuation
Different accounting principles
Example:
India GAAP vs IFRS.
So SAP must store separate accounting view per ledger.
Real impact on system performance
This is the main point from your slide.
More ledgers = More data stored
Formula:
Number of ledger × number of postings = database rows.
Example:
1 million postings per day
1 ledger → 1 million rows
2 ledgers → 2 million rows
3 ledgers → 3 million rows
Database grows faster.
Why this impacts performance
More data means:
Bigger database size
More memory usage
Slower queries
Longer backups
More storage cost
Even in HANA (fast DB),
double data is still double data.
That’s why trainer said:
Use parallel ledgers only when really required.
Simple analogy (from slide)
Phone storage example:
Saving a photo once → OK
Saving same photo twice → double space used
Parallel ledger = storing accounting data twice.
Important Interview Question
What is the impact of parallel accounting on SAP performance?
Answer:
Parallel ledgers increase database size because SAP stores accounting entries separately for each ledger. This increases storage, memory usage and processing load, so additional ledgers should only be activated when required for statutory or group reporting.
Final takeaway
| Ledgers | Impact |
|---|---|
| 1 ledger | Normal data |
| 2 ledgers | Double data |
| 3 ledgers | Triple data |
More ledgers = More storage + More processing.
Comments
Post a Comment