DBA Data[Home] [Help]

APPS.IGS_AD_IMP_UH_TST_PKG dependencies on IGS_AD_TEST_TYPE

Line 127: -- store it in L_SCORE_TYPE from the table IGS_AD_TEST_TYPE

123: WHERE person_id = p_person_id));
124: --
125: -- DLD_adsr_Test_Scores
126: -- 6. Get the corresponding SCORE_TYPE for the C_TST_CUR.TEST_TYPE and
127: -- store it in L_SCORE_TYPE from the table IGS_AD_TEST_TYPE
128: --
129: CURSOR c_score_typ_cur (cp_test_type VARCHAR2) IS
130: SELECT
131: score_type

Line 133: igs_ad_test_type

129: CURSOR c_score_typ_cur (cp_test_type VARCHAR2) IS
130: SELECT
131: score_type
132: FROM
133: igs_ad_test_type
134: WHERE
135: admission_test_type = cp_test_type;
136:
137: c_score_typ_rec c_score_typ_cur%ROWTYPE;