DBA Data[Home] [Help]

APPS.PER_SIP_BUS dependencies on FND_MSG_PUB

Line 399: fnd_msg_pub.add;

395:
396: hr_utility.set_location(l_proc, 80);
397: hr_utility.set_message (800, 'PER_33888_SP_SCSR_MAX_PLANS');
398: hr_utility.set_message_token('SCSR',l_name);
399: fnd_msg_pub.add;
400: end if;
401: end if;
402: --
403: hr_utility.set_location(' Leaving:'||l_proc, 99);

Line 433: fnd_msg_pub.add;

429: if (l_plan_status = 'I')
430: then
431: hr_utility.set_location(l_proc, 80);
432: hr_utility.set_message (800, 'PER_ADD_DEL_SCRS_INA_PLAN');
433: fnd_msg_pub.add;
434: end if;
435: --
436: hr_utility.set_location(' Leaving:'||l_proc, 99);
437: End chkPlanStatus;

Line 558: fnd_msg_pub.add;

554: close csrPersonName;
555: hr_utility.set_location(l_proc, 80);
556: hr_utility.set_message (800, 'PER_33881_SP_INV_PERSON_TYPE');
557: hr_utility.set_message_token('Invalid Successor Name',l_name);
558: fnd_msg_pub.add;
559: end if;
560:
561: end if;
562:

Line 627: fnd_msg_pub.set_search_name(800, 'PER_33882_SP_MAX_SCSRS');

623: AND status='A';
624: if l_scsr_count >= l_max_successors
625: then
626: hr_utility.set_location(l_proc, 80);
627: fnd_msg_pub.set_search_name(800, 'PER_33882_SP_MAX_SCSRS');
628: fnd_msg_pub.Delete_Msg;
629: hr_utility.set_message (800, 'PER_33882_SP_MAX_SCSRS');
630: fnd_msg_pub.add;
631: end if;

Line 628: fnd_msg_pub.Delete_Msg;

624: if l_scsr_count >= l_max_successors
625: then
626: hr_utility.set_location(l_proc, 80);
627: fnd_msg_pub.set_search_name(800, 'PER_33882_SP_MAX_SCSRS');
628: fnd_msg_pub.Delete_Msg;
629: hr_utility.set_message (800, 'PER_33882_SP_MAX_SCSRS');
630: fnd_msg_pub.add;
631: end if;
632:

Line 630: fnd_msg_pub.add;

626: hr_utility.set_location(l_proc, 80);
627: fnd_msg_pub.set_search_name(800, 'PER_33882_SP_MAX_SCSRS');
628: fnd_msg_pub.Delete_Msg;
629: hr_utility.set_message (800, 'PER_33882_SP_MAX_SCSRS');
630: fnd_msg_pub.add;
631: end if;
632:
633: end if;
634:

Line 682: fnd_msg_pub.add;

678: then
679: hr_utility.set_location(l_proc, 10);
680: hr_utility.set_message (800, 'PER_33883_SP_ENDDT_LESS_STRTDT');
681: hr_utility.set_message_token('SCSR',l_name);
682: fnd_msg_pub.add;
683: end if;
684:
685: if (p_start_date is not null and (p_start_date < l_pl_strt_date or p_start_date > l_pl_end_date)) or
686: (p_end_date is not null and (p_end_date > l_pl_end_date or p_end_date < l_pl_strt_date))

Line 691: fnd_msg_pub.add;

687: then
688: hr_utility.set_location(l_proc, 10);
689: hr_utility.set_message (800, 'PER_33884_SP_SCSR_DT_BTW_PL_DT');
690: hr_utility.set_message_token('SCSR',l_name);
691: fnd_msg_pub.add;
692: end if;
693:
694:
695: