‎2008 Jan 02 12:58 PM
Hi ,
I have a conversion issue .
i have emp_id(8) type c and emp_obj(8) type n .
when i am using the conversion :
emp_id = emp_obj its saying type incompatible .
can anyone help on this ?
Thanks ,
Abhishek .
‎2008 Jan 02 1:00 PM
In place of this
emp_id = emp_obj
u just use
move : emp_obj to emp_id.
‎2008 Jan 02 1:00 PM
In place of this
emp_id = emp_obj
u just use
move : emp_obj to emp_id.
‎2008 Jan 02 1:11 PM
Hi,
try with below sample code.
data: emp_id(8) type c,
emp_obj(8) type n .
emp_obj = 12345.
write emp_obj to emp_id.
Reward if useful.
Thanks,
Sreeram.
‎2008 Jan 02 2:11 PM
‎2008 Jan 02 2:32 PM