193: is
194: --
195: Cursor csr_job is
196: Select null
197: From per_jobs
198: Where job_id = p_job_id;
199: --
200: -- The foll cursor checks if the passed job is present in the passed
201: -- budget version.
215: --
216: hr_utility.set_location('Entering :'||l_proc,5);
217: --
218: --
219: -- validate if the job is in per_jobs
220: --
221: Open csr_job;
222: Fetch csr_job into l_dummy;
223: If csr_job%notfound then