DBA Data[Home] [Help]

APPS.PER_PEOPLE3_PKG dependencies on FND_MESSAGE

Line 591: fnd_message.set_name('PER','HR_EMP_VAC_FILLED');

587: -- If a row is returned then the vacancy is over-subscribed
588: -- set message and warning flag.
589: -- raise exception.
590: --
591: fnd_message.set_name('PER','HR_EMP_VAC_FILLED');
592: fnd_message.set_token('VAC',l_vacancy_name);
593: p_fire_warning := 'Y';
594: raise over_subscribed;
595: end if; -- is asg hired ?

Line 592: fnd_message.set_token('VAC',l_vacancy_name);

588: -- set message and warning flag.
589: -- raise exception.
590: --
591: fnd_message.set_name('PER','HR_EMP_VAC_FILLED');
592: fnd_message.set_token('VAC',l_vacancy_name);
593: p_fire_warning := 'Y';
594: raise over_subscribed;
595: end if; -- is asg hired ?
596: exception

Line 600: fnd_message.set_name('PER','HR_EMP_VAC_FILLED');

596: exception
597: when no_data_found then
598: null;
599: when too_many_rows then
600: fnd_message.set_name('PER','HR_EMP_VAC_FILLED');
601: fnd_message.set_token('VAC','Too many rows');
602: app_exception.raise_exception;
603: end;
604: end loop;

Line 601: fnd_message.set_token('VAC','Too many rows');

597: when no_data_found then
598: null;
599: when too_many_rows then
600: fnd_message.set_name('PER','HR_EMP_VAC_FILLED');
601: fnd_message.set_token('VAC','Too many rows');
602: app_exception.raise_exception;
603: end;
604: end loop;
605: --