DBA Data[Home] [Help]

APPS.IRC_CMT_BUS dependencies on FND_MESSAGE

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

65: close csr_sec_grp;
66: --
67: -- The primary key is invalid therefore we must error
68: --
69: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
70: hr_multi_message.add
71: (p_associated_column1
72: => nvl(p_associated_column1,'COMMUNICATION_TOPIC_ID')
73: );

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

152: --
153: -- The primary key is invalid therefore we must error
154: --
155: close csr_leg_code;
156: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
157: fnd_message.raise_error;
158: end if;
159: hr_utility.set_location(l_proc,30);
160: --

Line 157: fnd_message.raise_error;

153: -- The primary key is invalid therefore we must error
154: --
155: close csr_leg_code;
156: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
157: fnd_message.raise_error;
158: end if;
159: hr_utility.set_location(l_proc,30);
160: --
161: -- Set the global variables so the values are

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

211: IF NOT irc_cmt_shd.api_updating
212: (p_communication_topic_id => p_rec.communication_topic_id
213: ,p_object_version_number => p_rec.object_version_number
214: ) THEN
215: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
216: fnd_message.set_token('PROCEDURE ', l_proc);
217: fnd_message.set_token('STEP ', '5');
218: fnd_message.raise_error;
219: END IF;

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

212: (p_communication_topic_id => p_rec.communication_topic_id
213: ,p_object_version_number => p_rec.object_version_number
214: ) THEN
215: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
216: fnd_message.set_token('PROCEDURE ', l_proc);
217: fnd_message.set_token('STEP ', '5');
218: fnd_message.raise_error;
219: END IF;
220: --

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

213: ,p_object_version_number => p_rec.object_version_number
214: ) THEN
215: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
216: fnd_message.set_token('PROCEDURE ', l_proc);
217: fnd_message.set_token('STEP ', '5');
218: fnd_message.raise_error;
219: END IF;
220: --
221: -- EDIT_HERE: Add checks to ensure non-updateable args have

Line 218: fnd_message.raise_error;

214: ) THEN
215: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
216: fnd_message.set_token('PROCEDURE ', l_proc);
217: fnd_message.set_token('STEP ', '5');
218: fnd_message.raise_error;
219: END IF;
220: --
221: -- EDIT_HERE: Add checks to ensure non-updateable args have
222: -- not been updated.

Line 282: fnd_message.set_name('PER','IRC_412405_WRNG_COMM_ID');

278: --should be in open status
279: open csr_comm(p_communication_id);
280: fetch csr_comm into l_status;
281: if csr_comm%notfound or l_status <> 'OPEN' then
282: fnd_message.set_name('PER','IRC_412405_WRNG_COMM_ID');
283: fnd_message.raise_error;
284: end if;
285: --
286: hr_utility.set_location(l_proc,20);

Line 283: fnd_message.raise_error;

279: open csr_comm(p_communication_id);
280: fetch csr_comm into l_status;
281: if csr_comm%notfound or l_status <> 'OPEN' then
282: fnd_message.set_name('PER','IRC_412405_WRNG_COMM_ID');
283: fnd_message.raise_error;
284: end if;
285: --
286: hr_utility.set_location(l_proc,20);
287: --

Line 330: fnd_message.set_name('PER','IRC_412246_NULL_TPC_SUB');

326: --
327: hr_utility.set_location(' Entering:'||l_proc,10);
328: --
329: if p_subject is null or length(p_subject) = 0 then
330: fnd_message.set_name('PER','IRC_412246_NULL_TPC_SUB');
331: fnd_message.raise_error;
332: end if;
333:
334: if length(p_subject) > 150 then

Line 331: fnd_message.raise_error;

327: hr_utility.set_location(' Entering:'||l_proc,10);
328: --
329: if p_subject is null or length(p_subject) = 0 then
330: fnd_message.set_name('PER','IRC_412246_NULL_TPC_SUB');
331: fnd_message.raise_error;
332: end if;
333:
334: if length(p_subject) > 150 then
335: fnd_message.set_name('PER','IRC_412406_LONG_MSG_SUB');

Line 335: fnd_message.set_name('PER','IRC_412406_LONG_MSG_SUB');

331: fnd_message.raise_error;
332: end if;
333:
334: if length(p_subject) > 150 then
335: fnd_message.set_name('PER','IRC_412406_LONG_MSG_SUB');
336: fnd_message.raise_error;
337: end if;
338: --
339: hr_utility.set_location(l_proc,20);

Line 336: fnd_message.raise_error;

332: end if;
333:
334: if length(p_subject) > 150 then
335: fnd_message.set_name('PER','IRC_412406_LONG_MSG_SUB');
336: fnd_message.raise_error;
337: end if;
338: --
339: hr_utility.set_location(l_proc,20);
340: --