index

Package sb_athletic_admissions_strings

This package contains the error messages and error message functions for the Athletic Admissions API (sb_athletic_admissions).

Message KeyError Message
MISSING_PIDMUnique identifier (PIDM) is missing
Unique identifier (PIDM) is required for the athletic admissions record and cannot be null.
MISSING_USER_IDUser ID is missing
User ID is required for the athletic admissions record and cannot be null.
INVALID_PIDMInvalid unique identifier (PIDM)
Unique identifier (PIDM) for the athletic admissions record must be valid.
INVALID_USER_IDInvalid User ID
User ID for the athletic admissions record must be valid.
INVALID_COMBINED_SATInvalid combined SAT score
Combined SAT score for the athletic admissions record is not a valid value.
INVALID_COMPOSITE_ACTInvalid composite ACT
Composite ACT score for the athletic admissions record is not valid.
INVALID_ATHLETE_GPAInvalid athlete GPA
Athlete's GPA score for the athletic admissions record is not a valid value.
INVALID_SAQS_CODEInvalid qualifier status code
Qualifier status code for the athletic admissions record must exist in the athletic qualifier status validation table (STVSAQS).
INVALID_HS_CORE_COURSESInvalid high school core courses
High school core courses for the athletic admissions record is not a valid value.
INVALID_DATA_ORIGINInvalid data origin
Data origin for the athletic admissions record is not valid.
P_DELETE_FAILEDCannot delete the record because it does not exist
Cannot delete the athletic admissions record because it does not exist.
PK_NOT_FOUNDCannot find the record using primary or unique key
Cannot find the athletic admissions record using the primary or unique key.
RECORD_EXISTSCannot create a new record because the record already exists
The new athletic admissions 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.