DBA Data[Home] [Help]

APPS.PER_ECA_BUS dependencies on PER_ALL_PEOPLE_F

Line 312: -- If a row does exist in per_all_people_f for the given person id then

308: -- In Arguments:
309: -- p_person_id
310: --
311: -- Post Success:
312: -- If a row does exist in per_all_people_f for the given person id then
313: -- processing continues.
314: --
315: -- Post Failure:
316: -- If a row does not exist in per_all_people_f for the given person id then

Line 316: -- If a row does not exist in per_all_people_f for the given person id then

312: -- If a row does exist in per_all_people_f for the given person id then
313: -- processing continues.
314: --
315: -- Post Failure:
316: -- If a row does not exist in per_all_people_f for the given person id then
317: -- an application error will be raised and processing is terminated.
318: --
319: -- Access Status:
320: -- Internal Table Handler Use Only.

Line 336: from per_all_people_f

332: l_person_id number;
333: --
334: cursor csr_valid_pers is
335: select person_id
336: from per_all_people_f
337: where person_id = p_person_id;
338: --
339: begin
340: hr_utility.set_location('Entering:'|| l_proc, 10);