This value is a Currency field, so its display is controled by the currency code, so answer could be 'no' you cannot. You should so change to some other type or use a currency without decimal positions (browse table TCURX) There are some tricks but they depend on where you want to display the amount: dynpro field, alv, sap script, smartforms, adobe, etc.
Regards,
Raymond
Why don't you use String in Smart form.You can do the below task in Smartform coding part else in driver program.
DATA:net TYPE ekpo-netpr VALUE '2500.00',
c1 TYPE string.
WRITE:net.
c1 = trunc( NET ).
"MOVE net TO c1.
WRITE:c1.
Add comment