SRW.MAXROW_INERR
built-in exceptionThis exception stops the report execution and raises the following error message:
REP-1424: Internal error while executing SRW.SET_MAXROW.
If it is raised, contact Oracle Customer Support.
SRW.MAXROW_INERR;
Reports Builder raises this exception when it detects an internal error while
executing the SRW.SET_MAXROW
packaged
procedure.
When you handle SRW.MAXROW_INERR
, you should always raise SRW.PROGRAM_ABORT
to end the report's execution (because the report has an internal problem).
Suppose you want your own error message raised, instead of the default error message. You could handle this exception in the following way:
EXCEPTION
when SRW.MAXROW_INERR then
srw.message(1000, 'Contact Oracle''s customer
support:
SRW.MAXROW_INERR');
raise srw.program_abort;
About the
Reports Builder built-in package (SRW
)
Copyright © 1984, 2005, Oracle. All rights reserved.