Hi,
I am generating a Customer Statement In Script.The problem is for some customers the amount field value is displayed as 6.537,29 and others the amount field value is displayed as 6,537.29. i.e., some numbers commas and decimal points are swapped around. It should always be commas for 000 separator and dot as a decimal point. This should be made uniform.
Can anybody please help me out.
regards,
Rajeshwar.
Check this link:
http://help.sap.com/saphelp_erp2004/helpdata/en/d2/cb3d07455611d189710000e8322d00/frameset.htm
Regards,
Ravi
Hello Raj,
Try with the formatting opitons,
Use this one.
<b>
Syntax
&symbol(.N)&
The EKPO-MENGE field contains the value 1234.56. The Dictionary definition specifies 3 decimal places and an output length of 17.
&EKPO-MENGE& -> 1,234.560
&EKPO-MENGE(.1) -> 1,234.6
&EKPO-MENGE&(.4) -> 1,234.5600
&EKPO-MENGE&(.0) -> 1,235</b>
If useful reward.
Vasanth
In your SAP menu, Go to Sytem -> User profile -> Own Data
This will take you to your user settings.
Go to the tab "Defaults" and set the Decimal Notation field.
You can also update it in the database table USR01.
In case of SAPScripts, you can use the format
&symbol(.N)&
Regards
Hi,
I think you have this swapping problem for some particular country,
you can set the country wise setting in OY01 tcode. or
if it is happen for particular user id then u can set decimal point format in SU01 for that user id.
I hope this resolve your problem.
Regards,
Arpit
Add a comment