2006 Apr 28 8:39 AM
hi,
i want to change a field value from numeric to currency field,
can any one say me.
hi,
i want to change a field value from numeric to currency field,
can any one say me.
2006 Apr 28 8:43 AM
Did you move the value to a currency variable?
Move num_var to curr_var.
regards,
Ravi
2006 Apr 28 8:47 AM
Hi,
you can try this ...
data: curr type i.
data currency type netpr.
curr = 100.
move curr to currency .Regards
vijay
2006 Apr 28 8:46 AM
Hi,
Just move the num to curr.
data : v_num(8) type N,
v_bet like pa0008-bet01.
v_num = '12345678'.
v_bet = v_num.
Regards,
GSR.
2006 Apr 28 8:53 AM
Hi,
Check this ..
data: curr type i.
data curency type netpr.
curr = 100.
move curr to curency.
write CURENCY currency 'USD'.Regards
vijay
2006 Apr 28 8:53 AM
Hi,
I tried this code and it works fine..
REPORT YRTANS_TEST .
data num1 type i.
num1 = 20.
data cur like marc-VKUMC.
move num1 to cur.
write num1.
write cur.
Regards,
Tanveer.
Mark helpful answers.
Please Close the thread and mark helpful answers.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |