2008 Jun 11 2:31 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
2008 Jun 11 2:49 PM
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
2008 Jun 11 2:35 PM
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
2008 Jun 11 2:43 PM
Hi,
Please go to SU01 --> Enter user id --> display --> Anc click on default tab and check the decimal notation
Thanks
Sarada
2008 Jun 11 2:49 PM
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |