‎2006 Oct 04 7:31 PM
HI ALL,
I NEED TO REMOVE THE COMMA IN THE AMT.
FOR INSTANCE : 37,550.00
TO 37550.00
HOW DO I DO THAT IN SMARTFORMS.
THANXS IN ADVANCE
‎2006 Oct 04 7:40 PM
use REPLACE.
REPLACE ALL OCCURRENCES OF ',' IN v_curr WITH ''.
condense V_CURR.
regards
srikanth
‎2006 Oct 04 8:06 PM
Hi Hari,
U can do that in user setting
For perticular user u can set different setting
Just check that...
ALI.
‎2006 Oct 04 8:23 PM
Hi Hari,
You can declare a Varialbe ,
Data: L_AMT type P Decimals 2.
and move your Amount value to this field and print it on the layout ....
or else, you can change the user ssettings to print the Amount value without a comma.
Regards
Sudheer
‎2006 Oct 04 8:50 PM
Hari,
You can use the formatting option &field(T)& to supress thousands indicators when displaying fields of types DEC, CURR, INT & QUAN.
Manoj