Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SMARTFORMS NUMBERS

Former Member
0 Likes
439

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

4 REPLIES 4
Read only

Former Member
0 Likes
419

use REPLACE.

REPLACE ALL OCCURRENCES OF ',' IN v_curr WITH ''.

condense V_CURR.

regards

srikanth

Read only

Former Member
0 Likes
419

Hi Hari,

U can do that in user setting

For perticular user u can set different setting

Just check that...

ALI.

Read only

Former Member
0 Likes
419

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

Read only

Former Member
0 Likes
419

Hari,

You can use the formatting option &field(T)& to supress thousands indicators when displaying fields of types DEC, CURR, INT & QUAN.

Manoj