DBA Data[Home] [Help]

APPS.HXC_HAN_BUS dependencies on FND_MESSAGE

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

77: close csr_sec_grp;
78: --
79: -- The primary key is invalid therefore we must error
80: --
81: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
82: hr_multi_message.add
83: (p_associated_column1
84: => nvl(p_associated_column1,'COMP_notification_ID')
85: ,p_associated_column2

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

181: --
182: -- The primary key is invalid therefore we must error
183: --
184: close csr_leg_code;
185: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
186: fnd_message.raise_error;
187: end if;
188: if g_debug then
189: hr_utility.set_location(l_proc,30);

Line 186: fnd_message.raise_error;

182: -- The primary key is invalid therefore we must error
183: --
184: close csr_leg_code;
185: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
186: fnd_message.raise_error;
187: end if;
188: if g_debug then
189: hr_utility.set_location(l_proc,30);
190: end if;

Line 248: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');

244: IF NOT hxc_han_shd.api_updating
245: (p_comp_notification_id => p_rec.comp_notification_id
246: ,p_object_version_number => p_rec.object_version_number
247: ) THEN
248: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
249: fnd_message.set_token('PROCEDURE ', l_proc);
250: fnd_message.set_token('STEP ', '5');
251: fnd_message.raise_error;
252: END IF;

Line 249: fnd_message.set_token('PROCEDURE ', l_proc);

245: (p_comp_notification_id => p_rec.comp_notification_id
246: ,p_object_version_number => p_rec.object_version_number
247: ) THEN
248: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
249: fnd_message.set_token('PROCEDURE ', l_proc);
250: fnd_message.set_token('STEP ', '5');
251: fnd_message.raise_error;
252: END IF;
253: --

Line 250: fnd_message.set_token('STEP ', '5');

246: ,p_object_version_number => p_rec.object_version_number
247: ) THEN
248: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
249: fnd_message.set_token('PROCEDURE ', l_proc);
250: fnd_message.set_token('STEP ', '5');
251: fnd_message.raise_error;
252: END IF;
253: --
254: -- EDIT_HERE: Add checks to ensure non-updateable args have

Line 251: fnd_message.raise_error;

247: ) THEN
248: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
249: fnd_message.set_token('PROCEDURE ', l_proc);
250: fnd_message.set_token('STEP ', '5');
251: fnd_message.raise_error;
252: END IF;
253: --
254: -- EDIT_HERE: Add checks to ensure non-updateable args have
255: -- not been updated.

Line 262: fnd_message.set_name('PER', 'NOTIOFICATION_ACTION_CODE cannot be changed');

258: --
259: --Check to see that notification_action_code is not updated
260: --
261: If (p_rec.notification_action_code <> hxc_han_shd.g_old_rec.notification_action_code) then
262: fnd_message.set_name('PER', 'NOTIOFICATION_ACTION_CODE cannot be changed');
263: fnd_message.raise_error;
264: End If;
265: --
266: --Check to see that notification_recipient_code is not updated

Line 263: fnd_message.raise_error;

259: --Check to see that notification_action_code is not updated
260: --
261: If (p_rec.notification_action_code <> hxc_han_shd.g_old_rec.notification_action_code) then
262: fnd_message.set_name('PER', 'NOTIOFICATION_ACTION_CODE cannot be changed');
263: fnd_message.raise_error;
264: End If;
265: --
266: --Check to see that notification_recipient_code is not updated
267: --

Line 269: fnd_message.set_name('PER', 'RECIPIENT_ACTION_CODE cannot be changed');

265: --
266: --Check to see that notification_recipient_code is not updated
267: --
268: If (p_rec.notification_recipient_code<>hxc_han_shd.g_old_rec.notification_recipient_code) then
269: fnd_message.set_name('PER', 'RECIPIENT_ACTION_CODE cannot be changed');
270: fnd_message.raise_error;
271: End If;
272: End chk_non_updateable_args;
273: --

Line 270: fnd_message.raise_error;

266: --Check to see that notification_recipient_code is not updated
267: --
268: If (p_rec.notification_recipient_code<>hxc_han_shd.g_old_rec.notification_recipient_code) then
269: fnd_message.set_name('PER', 'RECIPIENT_ACTION_CODE cannot be changed');
270: fnd_message.raise_error;
271: End If;
272: End chk_non_updateable_args;
273: --
274: -- ----------------------------------------------------------------------------