2008 Aug 11 11:28 AM
Hi All,
I have number in this format 10.000,52.I want to change this format to my User decimal format whcih is entred in SU01.
Can anybody please help me out.
Thanks,
Swapna.
2008 Aug 11 1:18 PM
Hi,
I can't change the settings in the SU01.The value is coming from flat file like this '10.500,50'.In this value all commas should be replace with '.' and all '.'with ','.
Or i need to convert this is user decimal format.How can i do tat.
is there any FM to solve this pblm.
Thanks
Hi All,
I have number in this format 10.000,52.I want to change this format to my User decimal format whcih is entred in SU01.
Can anybody please help me out.
Thanks,
Swapna.
2008 Aug 11 11:30 AM
2008 Aug 11 11:42 AM
Go to System>User Profile>Own data
Defaults Tab, select the decimal notation type u required.
next time when u give input any number, it will display according to that particular notations.
2008 Aug 11 11:46 AM
Hi Swapna,
Please go to SU01 --> Enter user id --> display --> Anc click on default tab and check the decimal notation.
Declare one field to currency type and then try
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.
regards,
Ranveer.
2008 Aug 11 1:18 PM
Hi,
I can't change the settings in the SU01.The value is coming from flat file like this '10.500,50'.In this value all commas should be replace with '.' and all '.'with ','.
Or i need to convert this is user decimal format.How can i do tat.
is there any FM to solve this pblm.
Thanks
2008 Aug 11 1:24 PM
Hi Swapna
Below sample code to replace dot with comma and viceversa.
while sy-subrc <> 0.
if wf_value eq '.' then
replace '.' with ',' into wf_value
elseif wf_value eq ',' then
replace '.' with '.' into wf_value
endwhile
BR
Lavanya
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |