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

Unicode Check

Former Member
0 Likes
786

How will I check whether my table is Unicode enabled or not.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
749

Hi Vishal,

*-Unicode information

if cl_abap_char_utilities=>charsize = 1.

unicode_sys = 'X'.

else.

unicode_sys = space.

endif.

Regards,

John.

5 REPLIES 5
Read only

Former Member
0 Likes
750

Hi Vishal,

*-Unicode information

if cl_abap_char_utilities=>charsize = 1.

unicode_sys = 'X'.

else.

unicode_sys = space.

endif.

Regards,

John.

Read only

0 Likes
749

as in application program i can inquire through attribute. is same is posiible with table or some transaction code

Read only

0 Likes
749

Hi vishal,

I'm not sure if I understand your requirement. Unicode system and unicode database belong together. You can't have one without the other. So if your DB (tables) are unicode your system is and vice versa.

Using the System->Status function you can also see if your system is unicode (but the same logic is applied as I did in the piece of Abap coding).

Regards,

John.

Read only

Former Member
0 Likes
749

hii

check <b>system > status</b> ,there unicode system if yes then unicode compatible

Read only

Manohar2u
Active Contributor
0 Likes
749

Try with UCCHECK Tcode, might help you.

Regds

Manohar