index

Package sb_athletic_eligibility_str

This package contains the error messages and error message functions for the Athletic Eligibility API (sb_athletic_eligibility).

Message KeyError Message
MISSING_PIDMUnique identifier (PIDM) is missing
Unique identifier (PIDM) is required for the athletic eligibility record and cannot be null.
MISSING_USER_IDUser ID is missing
User ID is required for the athletic eligibility record and cannot be null.
MISSING_RECRUIT_INDRecruited indicator is missing
Recruited indicator is required for the athletic eligibility record and cannot be null.
INVALID_PIDMInvalid unique identifier (PIDM)
Unique identifier (PIDM) for the athletic eligibility record must be valid.
INVALID_USER_IDInvalid user ID
User ID for the athletic eligibility record must be valid.
INVALID_RECRUIT_INDInvalid recruited indicator
Value entered for the recruited indicator for the athletic eligibility record must be Y or N.
INVALID_ATTEND_FROM_DATEInvalid attended from date
Attended from date for the athletic eligibility record must be valid.
INVALID_INITIAL_ENROLL_DATEInvalid initial enrollment date
Initial enrollment date for the athletic eligibility record must be valid.
INVALID_TOTAL_TERMS_ATTENDInvalid total terms attended
Total terms attended for the athletic eligibility record is not valid.
INVALID_DATA_ORIGINInvalid data origin
Data origin for the athletic eligibility record must be valid.
P_DELETE_FAILEDCannot delete the record because it does not exist
Cannot delete the athletic eligibility record because it does not exist.
PK_NOT_FOUNDCannot find the record using the primary or unique key
Cannot find the athletic eligibility record using primary or unique key.
RECORD_EXISTSCannot create a new record because the record already exists
The new athletic eligibility record cannot be created because the record already exists.


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.