on 2008 Apr 18 11:28 AM
hi,
in form currency field is coming in the format like
100000 i want to apply , and should be displayed like
10,000 if the value is 1000 than it should be 1,000 please let me know how to do this.
answers will be awarded
if it is report
move u r currency into var1.
then var1 into var2.
REPORT y_test67 no standard page heading line-size 255.
data : var1(10) type c.
data : var2 type i.
var1 = 1000.
var2 = var1.
write : var2.
it it is smartform declare this code in the program lines..
it will work..
it will work defnately..
with regards,
Kiran.G
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
check your user profile currency format as follows...
goto Transaction Code: SU3
press on 'Defaults' tab.
chek the decimal notation. If it is not correct, the choose the appropriate one and save the contenst.
Now you logoff SAP and relogin then the modifications will be get effected.
thanks & regards
Kishore Kumar Maram
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi thiru,
Did you check you currency format in
SYSTEm -> User Profile-> Own Data-> Default
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.