Application Development and Automation 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: 
Read only

convert amount from flat file format to user format

Former Member
0 Likes
3,223

hi,

how to convert amount from flat file format to user specific format.

input: 1000.00

output: 1.000,00 (user specific)

thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,711

Karthik,

Use FM BKK_AMOUNT_CONV_TO_INTERN_MAIN.

you can check by changing the values in su01.but remember your change reflect only when you logoff SAP and again login.so once logoff is needed.

please give mark all usefull answer.

Amit.

Edited by: Amit on Jun 11, 2008 3:52 PM

hi,

how to convert amount from flat file format to user specific format.

input: 1000.00

output: 1.000,00 (user specific)

thanks in advance

3 REPLIES 3
Read only

Former Member
0 Likes
1,711

move that value to a type WRBTR variable

and use write statement.

data v_wrbtr type wrbtr.

data v_char(20).

v_wrbtr = 1000.

write v_wrbtr to v_char.

v_char will contain the amount in user format.

  • Prerequsite, go to SU3 transaction.

Defaults tab, chose the decimal notation .

Regards,

Ravi

Read only

Former Member
0 Likes
1,711

Hi,

Please go to SU01 --> Enter user id --> display --> Anc click on default tab and check the decimal notation

Thanks

Sarada

Read only

Former Member
0 Likes
1,712

Karthik,

Use FM BKK_AMOUNT_CONV_TO_INTERN_MAIN.

you can check by changing the values in su01.but remember your change reflect only when you logoff SAP and again login.so once logoff is needed.

please give mark all usefull answer.

Amit.

Edited by: Amit on Jun 11, 2008 3:52 PM