Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

inr format

Former Member
0 Kudos

Dear Sir,

i m give some numbers in parameter.

that number display in INR fromat.

ex. input:

12345678.00

output

1,23,45,678.00

i need this output format...

how can i do sir?

pls tell me sir..

thanks

Mani

2 REPLIES 2

Former Member
0 Kudos

hi

The output of the WRITE statement is "123456,78".

DATA int TYPE i VALUE 12345678.

WRITE int NO-GROUPING CURRENCY 'EUR'.

Thanks.

Pawan_Kesari
Active Contributor
0 Kudos

to get the currency specific format specify currency with WRITE statement

DATA : vtest TYPE wrbtr VALUE '12345678.00' .

WRITE vtest CURRENCY 'INR' .