DBA Data[Home] [Help]

APPS.PER_SPH_BUS dependencies on FND_MSG_PUB

Line 379: fnd_msg_pub.add;

375: if p_start_date is not null and p_end_date is not null and p_start_date > p_end_date
376: then
377: hr_utility.set_location(l_proc, 20);
378: hr_utility.set_message (800, 'PER_33885_SP_PL_ENDDT_STRTDT');
379: fnd_msg_pub.add;
380: end if;
381:
382: if p_start_date is not null and (p_rvw_date <= p_start_date or p_rvw_date > nvl(p_end_date, p_rvw_date) )
383: then

Line 386: fnd_msg_pub.add;

382: if p_start_date is not null and (p_rvw_date <= p_start_date or p_rvw_date > nvl(p_end_date, p_rvw_date) )
383: then
384: hr_utility.set_location(l_proc, 30);
385: hr_utility.set_message (800, 'PER_33886_SP_RVWDT_LESS_STRTDT');
386: fnd_msg_pub.add;
387: end if;
388:
389: if p_filled_on is not null and (p_filled_on < p_start_date or p_filled_on > nvl(p_end_date,p_filled_on) )
390: then

Line 393: fnd_msg_pub.add;

389: if p_filled_on is not null and (p_filled_on < p_start_date or p_filled_on > nvl(p_end_date,p_filled_on) )
390: then
391: hr_utility.set_location(l_proc, 40);
392: hr_utility.set_message (800, 'PER_33889_SP_FILLED_ON_DT_VAL');
393: fnd_msg_pub.add;
394:
395: end if;
396:
397: --

Line 446: fnd_msg_pub.add;

442: if l_plan_count >= l_max_plans
443: then
444: hr_utility.set_location(l_proc, 80);
445: hr_utility.set_message (800, 'PER_33887_SP_MAX_PLANS');
446: fnd_msg_pub.add;
447: end if;
448: --
449: hr_utility.set_location(' Leaving:'||l_proc, 99);
450: End chkMaxPlans;