Hi all,
i am working on upgrade project ecc5.0 to ecc6.0
below error i am getting
hold-textx must be a character -type field (data type c,n,d or t
in the program it decleard
data:hold-textx(288) type x.
it shows in the below line write:hold-textline to hold-textx.
i coded like below
DATA: CHAR TYPE X VALUE 160.
CLASS: CL_ABAP_CONV_IN_CE DEFINITION LOAD.
DATA CHAR TYPE C.
CHAR = CL_ABAP_CONV_IN_CE=>UCCP(u201800AOu2019).
00AO is the exadecimal equivalent of 160,its k for 288 character
plz suggest me for above code i need to change...
Madhu