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

Error code READ in UCCHECK??

Former Member
0 Likes
1,004

Hello experts,

When I ran Tcode UCCHECK, I got two errors whcih have error code READ.

What does it mean?

Unicode Flag/ Original System/ Program /Include Row/ Error Code/ Message /Created By

X/ SAP/ /0/ READ/ Error Using READ REPORT/ SAP

/ SAP/ /0/ READ/ Error Using READ REPORT /SAP MLDB

Above is the log from UCCHECK for the 2 programs--- the program names are empty.

when I hit the back button on UCCHECK screen result, it shoed this message.

01/31/2008 Check a Program Set for Syntax Errors in Unicode Environment 1

-


Could not determine program name:

FUGR GRWT SAP SAP

Could not determine program name:

PROG MLDB SAP SAP

Please help me with this.

Thanks,

Goldie.

Edited by: goldie on Jan 31, 2008 1:27 PM

Edited by: goldie on Jan 31, 2008 1:30 PM

3 REPLIES 3
Read only

Former Member
0 Likes
687

This error is raised, if the source code of a certain program could not be read.

The following abap statement is used to do that:

READ REPORT p_include INTO p_source.

If this statement fails, the error you reported is raised. Possible reasons are:

sy-subrc = 4 - The specified program was not found in the repository.

sy-subrc = 8 - The specified program is a system program protected against read access.

If you want to see what program the report tried to read, set a breakpoint in form routine 'samt_read_report' in include RSAMTFEX.

Hope that helps.

Michael

Read only

0 Likes
687

Thank you michael,

That was really helpful.

Right now I am trying to do other "stuff".

I will definitely test it.

awarding you with very helpful answer points for the time being.

~goldie.

Read only

Former Member
0 Likes
687

See SAP note 1601046.

Best regards, Henning