131: l_dummy varchar2(1);
132: --
133: cursor c1 is
134: select null
135: from per_qualifications per
136: where per.qualification_type_id = p_qualification_type_id;
137: --
138: -- BUG3356369
139: --
151: --
152: if c1%found then
153: --
154: -- error cannot delete qualification_type_id as it is used in the
155: -- per_qualifications table
156: --
157: close c1;
158: hr_utility.set_message(801,'HR_51537_EQT_QUAL_TAB_REF');
159: hr_utility.raise_error;