‎2007 Jun 18 12:08 PM
Hi Friends,
How to convert 'P' type field to character field data.
TIA.
Regards,
Mark K
‎2007 Jun 18 12:11 PM
Hi
You can use MOVE statement
check this and see
data: P type P decimals 2 value '12.35'.
c(5) type c.
Move p to c.
write 😕 C.
Reward points for useful Answers
Regards
Anji