DBA Data[Home] [Help]

APPS.PER_CEO_BUS dependencies on HR_MULTI_MESSAGE

Line 63: hr_multi_message.add

59: --
60: -- The primary key is invalid therefore we must error
61: --
62: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
63: hr_multi_message.add
64: (p_associated_column1
65: => nvl(p_associated_column1,'OUTCOME_ID')
66: );
67: --

Line 599: hr_multi_message.add

595: fetch csr_upd_uniq_comp_ele_outcome into l_exists;
596: if csr_upd_uniq_comp_ele_outcome%FOUND then
597: close csr_upd_uniq_comp_ele_outcome;
598: hr_utility.set_message(800,'HR_449132_QUA_FWK_OUTCM_EXISTS');
599: hr_multi_message.add
600: (p_associated_column1 => 'PER_COMP_ELEMENT_OUTCOMES.DATE_FROM');
601:
602: hr_utility.raise_error;
603: end if;

Line 615: hr_multi_message.add

611: fetch csr_uniq_comp_element_outcome into l_exists;
612: if csr_uniq_comp_element_outcome%FOUND then
613: close csr_uniq_comp_element_outcome;
614: hr_utility.set_message(800,'HR_449132_QUA_FWK_OUTCM_EXISTS');
615: hr_multi_message.add
616: (p_associated_column1 => 'PER_COMP_ELEMENT_OUTCOMES.DATE_FROM');
617:
618: hr_utility.raise_error;
619: end if;

Line 710: hr_multi_message.add

706: hr_utility.set_location(l_proc, 30);
707: --
708: if p_date_from > nvl(p_date_to,hr_api.g_eot) then
709: hr_utility.set_message(800,'HR_6758_APPL_DATE_FROM_CHK');
710: hr_multi_message.add
711: (p_associated_column1 => 'PER_COMP_ELEMENT_OUTCOMES.DATE_FROM');
712: hr_utility.raise_error;
713: end if;
714: --

Line 726: hr_multi_message.add

722: close csr_get_outcome_active_date;
723:
724: if p_date_from < nvl( l_outcome_active_date,hr_api.g_eot) then
725: hr_utility.set_message(800,'HR_34724_COMP_OUTCME_DATE_INVL');
726: hr_multi_message.add
727: (p_associated_column1 => 'PER_COMP_ELEMENT_OUTCOMES.DATE_FROM');
728: hr_utility.raise_error;
729: end if;
730: --