Hello All,
I noticed that if a packed number has reached to billions, the comma doesn't get displayed.
EXAMPLE:
DATA: v_num1 type p decimals 2,
v_num2 type p decimals 2,
v_sum type p decimals 2.
v_num1 = '98067382712.56'.
v_num2 = '123456789.54'.
v_sum = v_num1 + v_num2.
write:/5 v_sum color 4.
When I look into the report output, it displays <b>98190,839,502.10</b> and not <b>98,190,839,502.10</b>. Is there a way to do solve this? I was hoping to find this in the user settings.
Many thanks in advance!
Regards,
Kristine