Package sb_gradapp_eligible
This package provides the common business interface for the Graduation Application Eligibility Rules API (sb_gradapp_eligible).
Graduation application eligibility rules determine if an learner is eligible to submit a graduation application via the graduation application self-service process.
One eligibility rule must pass in order for a learner to be eligible to submit a graduation application for a curriculum. If the information defined on an eligibility rule matches the learner's data (student, curriculum, and/or degree) then the eligibility rule is considered passing and the learner may submit a graduation application for the curriculum.
|
M_ENTITY_NAME
M_ENTITY_NAME CONSTANT VARCHAR2(16) := 'GRADAPP_ELIGIBLE';
Business Entity Name
M_BASE_TABLE_NAME
M_BASE_TABLE_NAME CONSTANT VARCHAR2(7) := 'SHBGELR';
Base table name
gradapp_eligible_rec
TYPE gradapp_eligible_rec IS RECORD (
r_seqno shbgelr.shbgelr_seqno%TYPE,
r_lmod_cde shbgelr.shbgelr_lmod_cde%TYPE,
r_user_id shbgelr.shbgelr_user_id%TYPE,
r_levl_code shbgelr.shbgelr_levl_code%TYPE,
r_camp_code shbgelr.shbgelr_camp_code%TYPE,
r_coll_code shbgelr.shbgelr_coll_code%TYPE,
r_degc_code shbgelr.shbgelr_degc_code%TYPE,
r_program shbgelr.shbgelr_program%TYPE,
r_lfst_code shbgelr.shbgelr_lfst_code%TYPE,
r_majr_code shbgelr.shbgelr_majr_code%TYPE,
r_dept_code shbgelr.shbgelr_dept_code%TYPE,
r_term_code_matric shbgelr.shbgelr_term_code_matric%TYPE,
r_term_code_admit shbgelr.shbgelr_term_code_admit%TYPE,
r_exp_grad_from_date shbgelr.shbgelr_exp_grad_from_date%TYPE,
r_exp_grad_to_date shbgelr.shbgelr_exp_grad_to_date%TYPE,
r_term_code_grad shbgelr.shbgelr_term_code_grad%TYPE,
r_stst_code shbgelr.shbgelr_stst_code%TYPE,
r_clas_code shbgelr.shbgelr_clas_code%TYPE,
r_atts_code shbgelr.shbgelr_atts_code%TYPE,
r_chrt_code shbgelr.shbgelr_chrt_code%TYPE,
r_stdn_term_code_grad shbgelr.shbgelr_stdn_term_code_grad%TYPE,
r_stdn_grad_from_date shbgelr.shbgelr_stdn_grad_from_date%TYPE,
r_stdn_grad_to_date shbgelr.shbgelr_stdn_grad_to_date%TYPE,
r_astd_code shbgelr.shbgelr_astd_code%TYPE,
r_cast_code shbgelr.shbgelr_cast_code%TYPE,
r_dgmr_term_code_grad shbgelr.shbgelr_dgmr_term_code_grad%TYPE,
r_dgmr_grad_from_date shbgelr.shbgelr_dgmr_grad_from_date%TYPE,
r_dgmr_grad_to_date shbgelr.shbgelr_dgmr_grad_to_date%TYPE,
r_grst_code shbgelr.shbgelr_grst_code%TYPE,
r_degs_code shbgelr.shbgelr_degs_code%TYPE,
r_levl_code_gpa_calc shbgelr.shbgelr_levl_code_gpa_calc%TYPE,
r_in_progress_ind shbgelr.shbgelr_in_progress_ind%TYPE,
r_inst_hours_earned shbgelr.shbgelr_inst_hours_earned%TYPE,
r_inst_gpa_hours shbgelr.shbgelr_inst_gpa_hours%TYPE,
r_inst_gpa shbgelr.shbgelr_inst_gpa%TYPE,
r_hours_earned shbgelr.shbgelr_hours_earned%TYPE,
r_gpa_hours shbgelr.shbgelr_gpa_hours%TYPE,
r_gpa shbgelr.shbgelr_gpa%TYPE,
r_data_origin shbgelr.shbgelr_data_origin%TYPE,
r_internal_record_id gb_common.internal_record_id_type);
Business Entity record type
gradapp_eligible_ref
TYPE gradapp_eligible_ref IS REF CURSOR RETURN gradapp_eligible_rec;
Entity cursor variable type
gradapp_eligible_tab
TYPE gradapp_eligible_tab IS TABLE OF gradapp_eligible_rec INDEX BY BINARY_INTEGER;
Entity table type
f_api_version
Function f_api_version RETURN PLS_INTEGER
Returns the API version number.
|
Version of the API signature. Changes only when the signature changes.
|
f_exists
Function f_exists(p_seqno shbgelr.shbgelr_seqno%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN VARCHAR2
Checks if a record exists.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18)
|
f_isequal
Function f_isequal(rec_one gradapp_eligible_rec,
rec_two gradapp_eligible_rec) RETURN VARCHAR2
Compares two records for equality.
Tests each field of rec_one against the corresponding field of rec_two. Two null values are considered equal.
|
Y if all values in records are equal, otherwise N. Nulls match Nulls.
|
f_query_all
Function f_query_all RETURN gradapp_eligible_ref
Selects all records for the entity.
|
A cursor variable that will fetch a set of records.
|
f_query_one
Function f_query_one(p_seqno shbgelr.shbgelr_seqno%TYPE)
RETURN gradapp_eligible_ref
Selects one record using the key.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
A cursor variable that will fetch exactly one record.
|
f_query_by_rowid
Function f_query_by_rowid(p_rowid gb_common.internal_record_id_type)
RETURN gradapp_eligible_ref
Selects one record using the ROWID.
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18) Required
|
|
A cursor variable that will fetch exactly one record.
|
f_query_one_lock
Function f_query_one_lock(p_seqno shbgelr.shbgelr_seqno%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN gradapp_eligible_ref
Selects one record and locks it.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18)
|
|
A cursor variable for one record, locking the record.
|
p_create
Procedure p_create(p_seqno shbgelr.shbgelr_seqno%TYPE,
p_lmod_cde shbgelr.shbgelr_lmod_cde%TYPE,
p_user_id shbgelr.shbgelr_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_levl_code shbgelr.shbgelr_levl_code%TYPE DEFAULT NULL,
p_camp_code shbgelr.shbgelr_camp_code%TYPE DEFAULT NULL,
p_coll_code shbgelr.shbgelr_coll_code%TYPE DEFAULT NULL,
p_degc_code shbgelr.shbgelr_degc_code%TYPE DEFAULT NULL,
p_program shbgelr.shbgelr_program%TYPE DEFAULT NULL,
p_lfst_code shbgelr.shbgelr_lfst_code%TYPE DEFAULT NULL,
p_majr_code shbgelr.shbgelr_majr_code%TYPE DEFAULT NULL,
p_dept_code shbgelr.shbgelr_dept_code%TYPE DEFAULT NULL,
p_term_code_matric shbgelr.shbgelr_term_code_matric%TYPE DEFAULT NULL,
p_term_code_admit shbgelr.shbgelr_term_code_admit%TYPE DEFAULT NULL,
p_exp_grad_from_date shbgelr.shbgelr_exp_grad_from_date%TYPE DEFAULT NULL,
p_exp_grad_to_date shbgelr.shbgelr_exp_grad_to_date%TYPE DEFAULT NULL,
p_term_code_grad shbgelr.shbgelr_term_code_grad%TYPE DEFAULT NULL,
p_stst_code shbgelr.shbgelr_stst_code%TYPE DEFAULT NULL,
p_clas_code shbgelr.shbgelr_clas_code%TYPE DEFAULT NULL,
p_atts_code shbgelr.shbgelr_atts_code%TYPE DEFAULT NULL,
p_chrt_code shbgelr.shbgelr_chrt_code%TYPE DEFAULT NULL,
p_stdn_term_code_grad shbgelr.shbgelr_stdn_term_code_grad%TYPE DEFAULT NULL,
p_stdn_grad_from_date shbgelr.shbgelr_stdn_grad_from_date%TYPE DEFAULT NULL,
p_stdn_grad_to_date shbgelr.shbgelr_stdn_grad_to_date%TYPE DEFAULT NULL,
p_astd_code shbgelr.shbgelr_astd_code%TYPE DEFAULT NULL,
p_cast_code shbgelr.shbgelr_cast_code%TYPE DEFAULT NULL,
p_dgmr_term_code_grad shbgelr.shbgelr_dgmr_term_code_grad%TYPE DEFAULT NULL,
p_dgmr_grad_from_date shbgelr.shbgelr_dgmr_grad_from_date%TYPE DEFAULT NULL,
p_dgmr_grad_to_date shbgelr.shbgelr_dgmr_grad_to_date%TYPE DEFAULT NULL,
p_grst_code shbgelr.shbgelr_grst_code%TYPE DEFAULT NULL,
p_degs_code shbgelr.shbgelr_degs_code%TYPE DEFAULT NULL,
p_levl_code_gpa_calc shbgelr.shbgelr_levl_code_gpa_calc%TYPE DEFAULT NULL,
p_in_progress_ind shbgelr.shbgelr_in_progress_ind%TYPE DEFAULT NULL,
p_inst_hours_earned shbgelr.shbgelr_inst_hours_earned%TYPE DEFAULT NULL,
p_inst_gpa_hours shbgelr.shbgelr_inst_gpa_hours%TYPE DEFAULT NULL,
p_inst_gpa shbgelr.shbgelr_inst_gpa%TYPE DEFAULT NULL,
p_hours_earned shbgelr.shbgelr_hours_earned%TYPE DEFAULT NULL,
p_gpa_hours shbgelr.shbgelr_gpa_hours%TYPE DEFAULT NULL,
p_gpa shbgelr.shbgelr_gpa%TYPE DEFAULT NULL,
p_data_origin shbgelr.shbgelr_data_origin%TYPE DEFAULT NULL,
p_rowid_out OUT gb_common.internal_record_id_type)
Creates a record.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
p_lmod_cde
|
Module code required for eligibility for graduation application selection. VARCHAR2(1) Required
|
|
p_user_id
|
ID of the most recent user to create or update the row in the SHBGELR table. VARCHAR2(30) Required
|
|
p_levl_code
|
Level code of the curriculum. VARCHAR2(2)
|
|
p_camp_code
|
Campus code of the curriculum. VARCHAR2(3)
|
|
p_coll_code
|
College code of the curriculum. VARCHAR2(2)
|
|
p_degc_code
|
Degree code of the curriculum. VARCHAR2(6)
|
|
p_program
|
Program of the curriculum. VARCHAR2(12)
|
|
p_lfst_code
|
Learner field of study type code of the curriculum. VARCHAR2(15)
|
|
p_majr_code
|
Major code for the field of study of the curriculum. VARCHAR2(4)
|
|
p_dept_code
|
Department code associated with the major field of study of the curriculum. VARCHAR2(4)
|
|
p_term_code_matric
|
Code of the term in which the learner matriculated into the curriculum. VARCHAR2(6)
|
|
p_term_code_admit
|
Code of the term in which the learner was admitted to curriculum. VARCHAR2(6)
|
|
p_exp_grad_from_date
|
First date of the range in which the learner is expected to graduate from the curriculum. DATE
|
|
p_exp_grad_to_date
|
Last date of the range in which the learner is expected to graduate from the curriculum. DATE
|
|
p_term_code_grad
|
Code of the term in which the learner expects to graduate. VARCHAR2(6)
|
|
p_stst_code
|
Code of the student's status for the effective term. VARCHAR2(2)
|
|
p_clas_code
|
Class to which the student belongs. VARCHAR2(2)
|
|
p_atts_code
|
Student's general student attribute code. VARCHAR2(4)
|
|
p_chrt_code
|
Student's cohort code. VARCHAR2(10)
|
|
p_stdn_term_code_grad
|
Code of the term in which the learner expects to graduate as recorded on the student record. VARCHAR2(6)
|
|
p_stdn_grad_from_date
|
First date of the range of the expected graduation date on the student record. DATE
|
|
p_stdn_grad_to_date
|
Last date of the range of the expected graduation date on the student record. DATE
|
|
p_astd_code
|
Code of an academic standing override for a student for the effective term. VARCHAR2(2)
|
|
p_cast_code
|
Combined academic standing code for student. VARCHAR2(2)
|
|
p_dgmr_term_code_grad
|
Code of the term in which the learner expects to graduate as recorded on the degree record. VARCHAR2(6)
|
|
p_dgmr_grad_from_date
|
First date of the range of the expected graduation date on the degree record. DATE
|
|
p_dgmr_grad_to_date
|
Last date of the range of the expected graduation date on the degree record. DATE
|
|
p_grst_code
|
Graduation status code. VARCHAR2(3)
|
|
p_degs_code
|
Status code of the student's degree, for example sought, awarded, etc. VARCHAR2(2)
|
|
p_levl_code_gpa_calc
|
Level that the eligibility rule will use to calculate GPA information. VARCHAR2(2)
|
|
p_in_progress_ind
|
Indicator for whether in-progress courses should be considered for the institutional and overall calculations. VARCHAR2(1)
|
|
p_inst_hours_earned
|
Minimum institutional earned hours that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_inst_gpa_hours
|
Minimum institutional GPA hours that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_inst_gpa
|
Minimum overall GPA that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_hours_earned
|
Minimum overall earned hours that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_gpa_hours
|
Minimum overall GPA hours that the learner must meet in order for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_gpa
|
Minimum overall GPA that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_data_origin
|
Value of the source system that inserted or updated the row. VARCHAR2(30)
|
|
p_rowid_out
|
Database ROWID of the record to be created. VARCHAR2(18) Required
|
p_delete
Procedure p_delete(p_seqno shbgelr.shbgelr_seqno%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Deletes a record.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
p_rowid
|
Database ROWID of the record to be deleted. VARCHAR2(18)
|
p_lock
Procedure p_lock(p_seqno shbgelr.shbgelr_seqno%TYPE,
p_rowid_inout IN OUT gb_common.internal_record_id_type)
Locks a record.
If ROWID is not passed in, the record is located using the key values and the ROWID of the locked row is passed in p_rowid_inout.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
p_rowid_inout
|
Database ROWID of the record to be locked. VARCHAR2(18) Required
|
p_update
Procedure p_update(p_seqno shbgelr.shbgelr_seqno%TYPE,
p_lmod_cde shbgelr.shbgelr_lmod_cde%TYPE,
p_user_id shbgelr.shbgelr_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_levl_code shbgelr.shbgelr_levl_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_camp_code shbgelr.shbgelr_camp_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_coll_code shbgelr.shbgelr_coll_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_degc_code shbgelr.shbgelr_degc_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_program shbgelr.shbgelr_program%TYPE DEFAULT dml_common.f_unspecified_string,
p_lfst_code shbgelr.shbgelr_lfst_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_majr_code shbgelr.shbgelr_majr_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_dept_code shbgelr.shbgelr_dept_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_term_code_matric shbgelr.shbgelr_term_code_matric%TYPE DEFAULT dml_common.f_unspecified_string,
p_term_code_admit shbgelr.shbgelr_term_code_admit%TYPE DEFAULT dml_common.f_unspecified_string,
p_exp_grad_from_date shbgelr.shbgelr_exp_grad_from_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_exp_grad_to_date shbgelr.shbgelr_exp_grad_to_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_term_code_grad shbgelr.shbgelr_term_code_grad%TYPE DEFAULT dml_common.f_unspecified_string,
p_stst_code shbgelr.shbgelr_stst_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_clas_code shbgelr.shbgelr_clas_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_atts_code shbgelr.shbgelr_atts_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_chrt_code shbgelr.shbgelr_chrt_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_stdn_term_code_grad shbgelr.shbgelr_stdn_term_code_grad%TYPE DEFAULT dml_common.f_unspecified_string,
p_stdn_grad_from_date shbgelr.shbgelr_stdn_grad_from_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_stdn_grad_to_date shbgelr.shbgelr_stdn_grad_to_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_astd_code shbgelr.shbgelr_astd_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_cast_code shbgelr.shbgelr_cast_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_dgmr_term_code_grad shbgelr.shbgelr_dgmr_term_code_grad%TYPE DEFAULT dml_common.f_unspecified_string,
p_dgmr_grad_from_date shbgelr.shbgelr_dgmr_grad_from_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_dgmr_grad_to_date shbgelr.shbgelr_dgmr_grad_to_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_grst_code shbgelr.shbgelr_grst_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_degs_code shbgelr.shbgelr_degs_code%TYPE DEFAULT dml_common.f_unspecified_string,
p_levl_code_gpa_calc shbgelr.shbgelr_levl_code_gpa_calc%TYPE DEFAULT dml_common.f_unspecified_string,
p_in_progress_ind shbgelr.shbgelr_in_progress_ind%TYPE DEFAULT dml_common.f_unspecified_string,
p_inst_hours_earned shbgelr.shbgelr_inst_hours_earned%TYPE DEFAULT dml_common.f_unspecified_number,
p_inst_gpa_hours shbgelr.shbgelr_inst_gpa_hours%TYPE DEFAULT dml_common.f_unspecified_number,
p_inst_gpa shbgelr.shbgelr_inst_gpa%TYPE DEFAULT dml_common.f_unspecified_number,
p_hours_earned shbgelr.shbgelr_hours_earned%TYPE DEFAULT dml_common.f_unspecified_number,
p_gpa_hours shbgelr.shbgelr_gpa_hours%TYPE DEFAULT dml_common.f_unspecified_number,
p_gpa shbgelr.shbgelr_gpa%TYPE DEFAULT dml_common.f_unspecified_number,
p_data_origin shbgelr.shbgelr_data_origin%TYPE DEFAULT dml_common.f_unspecified_string,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Updates a record.
|
p_seqno
|
One-up number to define the row. NUMBER(8) Required Key
|
|
p_lmod_cde
|
Module code required for eligibility for graduation application selection. VARCHAR2(1) Required
|
|
p_user_id
|
ID of the most recent user to create or update the row in the SHBGELR table. VARCHAR2(30) Required
|
|
p_levl_code
|
Level code of the curriculum. VARCHAR2(2)
|
|
p_camp_code
|
Campus code of the curriculum. VARCHAR2(3)
|
|
p_coll_code
|
College code of the curriculum. VARCHAR2(2)
|
|
p_degc_code
|
Degree code of the curriculum. VARCHAR2(6)
|
|
p_program
|
Program of the curriculum. VARCHAR2(12)
|
|
p_lfst_code
|
Learner field of study type code of the curriculum. VARCHAR2(15)
|
|
p_majr_code
|
Major code for the field of study of the curriculum. VARCHAR2(4)
|
|
p_dept_code
|
Department code associated with the major field of study of the curriculum. VARCHAR2(4)
|
|
p_term_code_matric
|
Code of the term in which the learner matriculated into the curriculum. VARCHAR2(6)
|
|
p_term_code_admit
|
Code of the term in which the learner was admitted to curriculum. VARCHAR2(6)
|
|
p_exp_grad_from_date
|
First date of the range in which the learner is expected to graduate from the curriculum. DATE
|
|
p_exp_grad_to_date
|
Last date of the range in which the learner is expected to graduate from the curriculum. DATE
|
|
p_term_code_grad
|
Code of the term in which the learner expects to graduate. VARCHAR2(6)
|
|
p_stst_code
|
Code of the student's status for the effective term. VARCHAR2(2)
|
|
p_clas_code
|
Class to which the student belongs. VARCHAR2(2)
|
|
p_atts_code
|
Student's general student attribute code. VARCHAR2(4)
|
|
p_chrt_code
|
Student's cohort code. VARCHAR2(10)
|
|
p_stdn_term_code_grad
|
Code of the term in which the learner expects to graduate as recorded on the student record. VARCHAR2(6)
|
|
p_stdn_grad_from_date
|
First date of the range of the expected graduation date on the student record. DATE
|
|
p_stdn_grad_to_date
|
Last date of the range of the expected graduation date on the student record. DATE
|
|
p_astd_code
|
Code of an academic standing override for a student for the effective term. VARCHAR2(2)
|
|
p_cast_code
|
Combined academic standing code for student. VARCHAR2(2)
|
|
p_dgmr_term_code_grad
|
Code of the term in which the learner expects to graduate as recorded on the degree record. VARCHAR2(6)
|
|
p_dgmr_grad_from_date
|
First date of the range of the expected graduation date on the degree record. DATE
|
|
p_dgmr_grad_to_date
|
Last date of the range of the expected graduation date on the degree record. DATE
|
|
p_grst_code
|
Graduation status code. VARCHAR2(3)
|
|
p_degs_code
|
Status code of the student's degree, for example sought, awarded, etc. VARCHAR2(2)
|
|
p_levl_code_gpa_calc
|
Level that the eligibility rule will use to calculate GPA information. VARCHAR2(2)
|
|
p_in_progress_ind
|
Indicator for whether in-progress courses should be considered for the institutional and overall calculations. VARCHAR2(1)
|
|
p_inst_hours_earned
|
Minimum institutional earned hours that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_inst_gpa_hours
|
Minimum institutional GPA hours that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_inst_gpa
|
Minimum overall GPA that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_hours_earned
|
Minimum overall earned hours that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_gpa_hours
|
Minimum overall GPA hours that the learner must meet in order for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_gpa
|
Minimum overall GPA that the learner must meet for the eligibility rule to be considered matching. NUMBER(11,3)
|
|
p_data_origin
|
Value of the source system that inserted or updated the row. VARCHAR2(30)
|
|
p_rowid
|
Database ROWID of the record to be updated. VARCHAR2(18)
|