HI FRIENDS
iam working for unicode upgradation project i got the following probelm if any one knows plz forword messages points are alloted by any kind of help
error "G_RETURN" and "IT_GRN_DTL" are not mutually convertible in a Unicode program. .
DATA: IT_GRN_DTL LIKE Z62V_GRN_ADDCVD OCCURS 0 WITH HEADER LINE.
DATA: IT_GRN_DTL LIKE Z62V_GRN_ADDCVD OCCURS 0 WITH HEADER LINE.
data: r_return(114) type c.
G_RETURN = IT_GRN_DTL(114).
IF SY-SUBRC = 0.
G_RETURN = IT_GRN_DTL(114).
WRITE:/ 'UPDATE',G_RETURN.
ELSE.
WRITE: / 'eRROR -
>', G_RETURN.
ENDIF.