‎2008 Jan 31 6:27 PM
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
‎2008 Jan 31 7:38 PM
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
‎2008 Jan 31 9:03 PM
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.
‎2015 Jan 09 2:59 PM