‎2009 Jun 08 1:41 PM
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??
‎2009 Jun 08 1:49 PM
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
‎2009 Jun 08 1:49 PM
‎2009 Jun 08 1:49 PM
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
‎2009 Jun 08 1:50 PM
Hi,
Run the UCCHECK Tcode it list all the Non Unicode Compatiable programs with list of errors too.
‎2009 Jun 08 2:04 PM
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
‎2009 Jun 08 2:08 PM
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.
‎2010 Apr 24 4:17 PM