Skip to Content
0
Jun 10, 2009 at 11:01 AM

Currency represent

38 Views

Hi all,

I have some problem with currency numbers represent.

I want to convert '50 000.00' number to currency format with 3 digit places '5 000.000'. How can I do it.?

I have wrote some code

 
DATA: brtwr LIKE esll-brtwr.
DATA: lv_brtwr LIKE esll-brtwr.
DATA: lv_string(15) TYPE c.

WRITE brtwr CURRENCY 'CZK3' TO lv_string .
CONDENSE lv_string NO-GAPS.
REPLACE ','  WITH '.' INTO lv_string.
lv_brtwr = lv_string.
WRITE lv_brtwr.

but with no result ..., I have '5 000.00' now, how can I solve this ?

Regards.