‎2008 Jul 02 7:39 AM
Hi guys,
i have this code below:
write v_val curr v_curr to v_val_temp.
write v_val_temp to v_price.
im getting a dump that a " 8 000 000" can not be read as a number...
v_val = 80000.00 (type curr)
v_curr = KRW (type cuky)
v_val_temp(13) (no type)
v_price type(13) (type dec)
is there a problem?
it does not dump on others PC but it dumps on mine...
I dont know why...
I need your inputs on this..
Thanks always,
mark
‎2008 Jul 02 7:54 AM
Hi,
In SU3 t-code
-> Defalut-->Decimal Notation -
> Change to X and Save
--> logout ur id and Login I hope then ur problem will solve.....
Reward if usefull...
Thanks,
Durai.V
‎2008 Jul 02 7:46 AM
Hi,
use the replace command before passing on the value to the Function Module.
replace '.' with ',' in <variable>.
Regards
VIjay
Edited by: Vijay on Jul 2, 2008 8:46 AM
‎2008 Jul 02 7:48 AM
may be this will work:
*data:
*v_val = 80000.00 (type curr)
*v_curr = KRW (type cuky)
*v_val_temp(13) (no type)
*v_price type(13) (type dec)
write v_val curr v_val_temp currency v_curr.
condense v_val_temp no-gap.
write v_val_temp to v_price.
‎2008 Jul 02 7:54 AM
Hi,
In SU3 t-code
-> Defalut-->Decimal Notation -
> Change to X and Save
--> logout ur id and Login I hope then ur problem will solve.....
Reward if usefull...
Thanks,
Durai.V