257: is
258: --
259: Cursor csr_grade is
260: Select null
261: From per_grades
262: Where grade_id = p_grade_id;
263: --
264: -- The foll cursor checks if the passed grade is present in the passed
265: -- budget version.
278: Begin
279: --
280: hr_utility.set_location('Entering :'||l_proc,5);
281: --
282: -- validate if the grade is in per_grades
283: --
284: Open csr_grade;
285: Fetch csr_grade into l_dummy;
286: If csr_grade%notfound then