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

Find Unicode compatible programs

Former Member
0 Likes
2,219

How to find abap programs(objects) are unicode compatible or not?

How to list out the unicode compatible programs?

Are there any function moduels in abap??

1 ACCEPTED SOLUTION
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,607

Hello,

You can use the t-code UCCHECK to know is the program is Unicode compatible. For any program with the attribute "Unicode checks active" has to be Unicode compliant.

You can goto the DB view TRDIR & give field UCCHECK = 'X' to see the program which have this attribute turned on.

BR,

Suhas

6 REPLIES 6
Read only

Former Member
0 Likes
1,607

Use transaction UCCHECK

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,608

Hello,

You can use the t-code UCCHECK to know is the program is Unicode compatible. For any program with the attribute "Unicode checks active" has to be Unicode compliant.

You can goto the DB view TRDIR & give field UCCHECK = 'X' to see the program which have this attribute turned on.

BR,

Suhas

Read only

Former Member
0 Likes
1,607

Hi,

Run the UCCHECK Tcode it list all the Non Unicode Compatiable programs with list of errors too.

Read only

Former Member
0 Likes
1,607

Hi,

Please check the following Tcode,Program and tables for Unicode check.

Tcode Program Description

-


-


-


SPUMG SAPLSPUMG Unicode Preconversion

SUMG SAPLSUMG Unicode Postconversion

UCCHECK RSUNISCAN_FINAL Unicode Syntax Check

Tables for Unicheck

-


samte,

samtx,

samt,

samtt,

samt_psinf,

v_samt.

Type-pool

-


scan, slin, synt, sana.

Regards

Pugazhenthi.P

Satyam Computer Services Ltd

Read only

umashankar_sahu
Active Participant
0 Likes
1,607

if you want to check whether particular program is unicode compatible or not then GOTO-->Attributes--and check whether corresponding check box for Unicode check active are checked or not if its checked means it is unicode compatible.

for listing of unicode compatible programs

Run transaction UCCHECK.

1. if you want a list of program which are already unicode enabled then dont check the first check box.

2. if you want a list of program which are not unicode enabled then check the first check box it will list all non unicode program, with errors when you are going to make unicode compatible.

Read only

Former Member
0 Likes
1,607

answered