DBA Data[Home] [Help]

APPS.PER_FR_ORG_DDF_VALIDATION dependencies on HR_MULTI_MESSAGE

Line 41: if hr_multi_message.no_exclusive_error

37: --
38: hr_utility.set_location('Entering: '||l_proc,5);
39: if p_org_information_context = 'FR_DYN_PAYMETH_MAPPING_INFO' then
40: hr_utility.set_location(l_proc,10);
41: if hr_multi_message.no_exclusive_error
42: (p_check_column1 => 'HR_ORGANIZATION_INFORMATION.ORG_INFORMATION1')
43: then
44: -- No error for ORG_INFORMATION1 already exists so,
45: -- prevent account-specific methods from being attached to more than

Line 54: hr_multi_message.add(p_associated_column1 =>

50: Fetch csr_chk_specific_opm into L_dummy;
51: If csr_chk_specific_opm%FOUND then
52: Close csr_chk_specific_opm;
53: fnd_message.set_name('PER', 'HR_75032_ORI_SPEC_OPM_EXISTS');
54: hr_multi_message.add(p_associated_column1 =>
55: 'HR_ORGANIZATION_INFORMATION.ORG_INFORMATION1');
56: else
57: close csr_chk_specific_opm;
58: end if;

Line 60: if hr_multi_message.no_exclusive_error

56: else
57: close csr_chk_specific_opm;
58: end if;
59: end if; -- check existing errors
60: if hr_multi_message.no_exclusive_error
61: (p_check_column1 => 'HR_ORGANIZATION_INFORMATION.ORG_INFORMATION2')
62: then
63: -- No error for ORG_INFORMATION2 already exists so,
64: -- prevent account-independent methods from being attached to an

Line 72: hr_multi_message.add(p_associated_column1 =>

68: fetch csr_chk_generic_opm into l_dummy;
69: if csr_chk_generic_opm%FOUND then
70: close csr_chk_generic_opm;
71: fnd_message.set_name('PER', 'HR_75033_ORI_GEN_OPM_EXISTS');
72: hr_multi_message.add(p_associated_column1 =>
73: 'HR_ORGANIZATION_INFORMATION.ORG_INFORMATION2');
74: else
75: close csr_chk_generic_opm;
76: end if;