DBA Data[Home] [Help]

APPS.PER_PEOPLE4_PKG dependencies on FND_MESSAGE

Line 289: fnd_message.set_name('PAY','HR_7193_PER_FUT_TYPE_EXISTS');

285: if hr_person.chk_future_person_type(p_s_system_person_type
286: ,p_person_id
287: ,p_business_group_id
288: ,p_effective_start_date) then
289: fnd_message.set_name('PAY','HR_7193_PER_FUT_TYPE_EXISTS');
290: app_exception.raise_exception;
291: end if;
292: --
293: -- Ensure there are no future applicant assignments

Line 331: fnd_message.set_name('PAY','HR_7193_PER_FUT_TYPE_EXISTS');

327: if hr_person.chk_future_person_type(p_s_system_person_type
328: ,p_person_id
329: ,p_business_group_id
330: ,p_effective_start_date) then
331: fnd_message.set_name('PAY','HR_7193_PER_FUT_TYPE_EXISTS');
332: app_exception.raise_exception;
333: end if;
334: --
335: if p_s_system_person_type = 'EX_EMP'

Line 386: fnd_message.set_name('PAY','HR_7193_PER_FUT_TYPE_EXISTS');

382: if hr_person.chk_future_person_type(p_s_system_person_type
383: ,p_person_id
384: ,p_business_group_id
385: ,p_effective_start_date) then
386: fnd_message.set_name('PAY','HR_7193_PER_FUT_TYPE_EXISTS');
387: hr_utility.raise_error;
388: end if;
389: --
390: -- Ensure there are no future applicant assignments

Line 788: fnd_message.set_name('PAY','HR_7510_PER_FUT_CHANGE');

784: begin
785: open future_exists;
786: fetch future_exists into l_dummy;
787: if future_exists%found then
788: fnd_message.set_name('PAY','HR_7510_PER_FUT_CHANGE');
789: app_exception.raise_exception;
790: end if;
791: close future_exists;
792: end;

Line 814: fnd_message.set_name('PAY','HR_51031_INV_HIRE_CHG_IS_SUPER');

810: open supervisor;
811: fetch supervisor into l_dummy;
812: if supervisor%FOUND then
813: close supervisor;
814: fnd_message.set_name('PAY','HR_51031_INV_HIRE_CHG_IS_SUPER');
815: app_exception.raise_exception;
816: end if;
817: close supervisor;
818: end;