System_General

System_General (err_text_ IN VARCHAR2,
                p1_ IN VARCHAR2 DEFAULT NULL,
                p2_ IN VARCHAR2 DEFAULT NULL,
                p3_ IN VARCHAR2 DEFAULT NULL)

Purpose

This procedure handles system level error exceptions without any translation of the message.

Parameters

Name Description
err_text_ Error text as a ordinary string without any possibilities for translation of the text (like all other error methods)
p1_ Text to replace ':P1' in the string err_text_
p2_ Text to replace ':P2' in the string err_text_
p3_ Text to replace ':P3' in the string err_text_

Returns

None.

Exceptions

Oracle error -20100 will be raised.

Pragma

None.

Comments

This interface is primarily intended to be used from IFS/Server system services.

Example

tmp_ VARCHAR2(10) := '1998-02-30';
..
Error_SYS.System_General('Can not convert <:P1> to date', tmp_);