ABAP to PL/SQL
The same routine, written by hand in ABAP and in PL/SQL. It is here so you can see what changes and what does not before anyone quotes you anything.
What you have · ABAP
DATA: lv_balance TYPE p DECIMALS 2 VALUE 0,
lv_rate TYPE p DECIMALS 4 VALUE '0.0425',
lv_interest TYPE p DECIMALS 2.
lv_interest = lv_balance * lv_rate.
WRITE: / 'INTEREST:', lv_interest.What it becomes · PL/SQL
CREATE OR REPLACE FUNCTION interest(
p_balance NUMBER, p_rate NUMBER
) RETURN NUMBER IS
BEGIN
RETURN ROUND(p_balance * p_rate, 2);
END;Reading two files side by side is the easy half. The hard half is the rest of the system: which files nothing calls any more, which job writes the record another one reads at 02:00, and whether the rewrite still produces the numbers your auditors saw last month. That work runs on our platform with an engineer watching it, and it starts with a look at your codebase.
When a converter stops being enough
Comparing two files is the easy half. Nothing on this page can tell you which files nothing calls any more, which batch job writes the record another one reads at 02:00, or whether the rewritten version still produces the numbers your auditors saw last month. The assessment answers that on your actual codebase.