A script-enabled browser is required for this page to function properly.

SRW.MAXROW_INERR built-in exception

This 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.

Syntax


SRW.MAXROW_INERR;

Usage notes

Reports Builder raises this exception when it detects an internal error while executing the SRW.SET_MAXROW packaged procedure.

Restrictions

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).

Example

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;

See also

About the Reports Builder built-in package (SRW)

SRW built-in package