cancel
Showing results for 
Search instead for 
Did you mean: 

remove comma in amount in smartforms

Former Member
0 Kudos

hi,

in my output im gettin amount as 19,238.40 but i want it as 19238.40 is there any way i can remove that comma, i mean is there any inbuilt function module to do it. any help will be rewarded

Accepted Solutions (1)

Accepted Solutions (1)

former_member196280
Active Contributor
0 Kudos

To remove commas display your variable like this &varaible(T)&

Ex: &EKPO-MENGE& --> 19,238.40

&EKPO-MENGE(T)& --> 19238.40

Close the thread if your question is answered.

Regards,

SaiRam

Answers (2)

Answers (2)

Former Member
0 Kudos

pass that field value to one local string variable and then write..

i hope it will work

Former Member
0 Kudos

HI ,

Try this

parameter a type p decimals 2 .

data c(20) type c .

write a .

move a to c .

translate c using ',' .

write c .

Regards