‎2007 Jan 30 6:19 PM
Hi All,
We have non unicode system and we are going to change our existing ABAP to make them unicode compliant. I have very basic knowledge that set attribute in ABAP to unicode and need to check transaction uccheck. But dont know how to handle errors. Can someone please provide me reference material for learning the same or notes to handle these errors.
for example giving errors for following statements, but i do not know how to handle this errors.
CONSTANTS: C_ENGLISH LIKE SY-LANGU VALUE 'EN'.
CONSTANTS: C_FRENCH LIKE SY-LANGU VALUE 'FR'.
data: wm_count(8) type i.
data: wm_countw(8) type i.
Thanks
Yogesh
‎2007 Jan 30 6:28 PM
hi yogesh,
give me ur mail id, i will send u doc on Unicode.
regards,
priya.
‎2007 Jan 30 6:22 PM
Hi,
What are various errors that you are getting ?
Regards,
Mukul
‎2007 Jan 30 6:28 PM
hi yogesh,
give me ur mail id, i will send u doc on Unicode.
regards,
priya.
‎2007 Jan 30 6:35 PM
Hi Priya,
My mail id yog_chavan@hotmail.com or yog_chavan@yahoo.com
Thanks
Yogesh
‎2007 Jan 30 6:38 PM
hi,
check ur mail
preethi check ur mail....
Message was edited by:
Priya
‎2007 Jan 30 6:48 PM
Hi,
Check out your emails.
Reward points if the document is helpful.
Regards,
Mukul
‎2007 Jan 30 6:33 PM
Yogesh,
data: wm_count(8) type i.
TYPE i should NOT have a length associated to it.
Define as:
data: wm_count type i.
‎2007 Jan 30 6:38 PM
SY-LANGU is a 1-char field
Define these variables as:
CONSTANTS: C_ENGLISH(2) VALUE 'EN'
‎2007 Jan 30 6:55 PM
Even better would be
CONSTANTS: C_ENGLISH like T002-LAISO VALUE 'EN' .
Reward points for the helpful answers. Thx.
‎2007 Jan 30 6:58 PM
Hi all,
can anyone send me the documents too at
preetisapmm@yahoo.com
thanks for the help.
Preeti