DBA Data[Home] [Help]

APPS.BEN_EIV_BUS dependencies on FND_MESSAGE

Line 73: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');

69: --
70: -- The primary key is invalid therefore we must error
71: --
72: close csr_leg_code;
73: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
74: fnd_message.raise_error;
75: end if;
76: hr_utility.set_location(l_proc,30);
77: --

Line 74: fnd_message.raise_error;

70: -- The primary key is invalid therefore we must error
71: --
72: close csr_leg_code;
73: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
74: fnd_message.raise_error;
75: end if;
76: hr_utility.set_location(l_proc,30);
77: --
78: -- Set the global variables so the values are

Line 144: fnd_message.set_name('BEN','BEN_93186_INP_VAL_NOT_UNIQUE');

140: open c1;
141: fetch c1 into l_dummy;
142: if c1%found then
143: close c1;
144: fnd_message.set_name('BEN','BEN_93186_INP_VAL_NOT_UNIQUE');
145: fnd_message.raise_error;
146: end if;
147: end if;
148: --

Line 145: fnd_message.raise_error;

141: fetch c1 into l_dummy;
142: if c1%found then
143: close c1;
144: fnd_message.set_name('BEN','BEN_93186_INP_VAL_NOT_UNIQUE');
145: fnd_message.raise_error;
146: end if;
147: end if;
148: --
149: hr_utility.set_location('Leaving:'||l_proc, 15);

Line 198: fnd_message.set_name('BEN','BEN_93187_INP_VAL_NOT_ALLOWED');

194: close c1;
195:
196: if (l_input_va_calc_rl is null)
197: then
198: fnd_message.set_name('BEN','BEN_93187_INP_VAL_NOT_ALLOWED');
199: fnd_message.raise_error;
200: end if;
201: --
202: hr_utility.set_location('Leaving:'||l_proc, 15);

Line 199: fnd_message.raise_error;

195:
196: if (l_input_va_calc_rl is null)
197: then
198: fnd_message.set_name('BEN','BEN_93187_INP_VAL_NOT_ALLOWED');
199: fnd_message.raise_error;
200: end if;
201: --
202: hr_utility.set_location('Leaving:'||l_proc, 15);
203: End chk_rl_exists;