index

Package nb_proxy_module_strings

This package contains the error messages and error message functions for the Proxy Module API (NB_PROXY_MODULE).
 

Message NameError Message
INVALID_PRXM_CODEInvalid Proxy Module for Proxy Module.
An invalid Proxy Module parameter was provided when calling a function or procedure in the Proxy Module API (NB_PROXY_MODULE). The code must exist in the Proxy Module Validation table (NTVPRXM).
MISSING_NTRPRXY_IDMissing mandatory Proxy ID for Proxy Module.
The Proxy ID parameter was omitted when calling a function or procedure in the Proxy Module API. This parameter is a key value for the PROXY_MODULE entity and must be provided.
MISSING_PARENTInvalid Proxy ID for Proxy Module.
An attempt was made to create a PROXY_MODULE record, but no parent record with these key values could be found.
MISSING_PRXM_CODEMissing mandatory Proxy Module for Proxy Module.
The Proxy Module parameter was omitted when calling a function or procedure in the Proxy Module API. This parameter is a key value for the PROXY_MODULE entity and must be provided.
P_DELETE_FAILEDCannot delete Proxy Module, record does not exist.
An attempt was made to delete a PROXY_MODULE record, but a record with these key values (or rowid) could not be found.
RECORD_EXISTSCannot create Proxy Module, record already exists.
An attempt was made to create a new PROXY_MODULE record, but a record already exists with these key values.


Program units
f_get_error   Returns the error message corresponding to p_errorname.

Variables
error_tab   Global PL/SQL table that holds the error messages.


error_tab

error_tab gb_common_strings.errmsg_tab_type;

Global PL/SQL table that holds the error messages.


f_get_error

Function f_get_error(p_errorname VARCHAR2)
  RETURN gb_common_strings.err_type

Returns the error message corresponding to p_errorname.

Parameters
p_errorname   Name associated with the error message.