Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP & UNICODE

Former Member
0 Likes
1,183

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,087

hi yogesh,

give me ur mail id, i will send u doc on Unicode.

regards,

priya.

9 REPLIES 9
Read only

Former Member
0 Likes
1,087

Hi,

What are various errors that you are getting ?

Regards,

Mukul

Read only

Former Member
0 Likes
1,088

hi yogesh,

give me ur mail id, i will send u doc on Unicode.

regards,

priya.

Read only

0 Likes
1,087

Hi Priya,

My mail id yog_chavan@hotmail.com or yog_chavan@yahoo.com

Thanks

Yogesh

Read only

0 Likes
1,087

hi,

check ur mail

preethi check ur mail....

Message was edited by:

Priya

Read only

0 Likes
1,087

Hi,

Check out your emails.

Reward points if the document is helpful.

Regards,

Mukul

Read only

Former Member
0 Likes
1,087

Yogesh,

data: wm_count(8) type i.

TYPE i should NOT have a length associated to it.

Define as:

data: wm_count type i.

Read only

Former Member
0 Likes
1,087

SY-LANGU is a 1-char field

Define these variables as:

CONSTANTS: C_ENGLISH(2) VALUE 'EN'

Read only

0 Likes
1,087

Even better would be

CONSTANTS: C_ENGLISH like T002-LAISO VALUE 'EN' .

Reward points for the helpful answers. Thx.

Read only

0 Likes
1,087

Hi all,

can anyone send me the documents too at

preetisapmm@yahoo.com

thanks for the help.

Preeti