cancel
Showing results for 
Search instead for 
Did you mean: 

Which t-code to verify a unicode system?

Former Member
0 Kudos

Hi!

Is there a transaction to show this system is unicode or not? Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Check System --> Status; you will see it in SAP system data"

else go to o/s level with user <sid>adm and run the following command disp+ work to validate the system is using the unicode kernel.

R,

pankaj

Former Member
0 Kudos

hi

data : v_unicode_sys(10) .

class cl_abap_char_utilities defintion load.

if cl_abap_char_utilities=>charsize = 1.

v_unicode_sys = 'no'(003).

else.

v_unicode_sys = 'yes'(004).

endif.

write : 'unicode in the system:' , v_unicode_sys.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Linda

You can login to the SAP system.

Go the Menu option System and Status... you will see a new STATUS window.

Here in "SAP System Data" you can see Unicode system - Yes ( for the Unicoded system )

Regards

Basis Dude