DBA Data[Home] [Help]

APPS.IRC_IDO_BUS dependencies on FND_MESSAGE

Line 181: fnd_message.set_name('PER','IRC_412249_DOC_NO_PERSON');

177: fetch csr_person_id into l_party_id;
178: hr_utility.set_location(l_proc, 30);
179: if csr_person_id%notfound then
180: close csr_person_id;
181: fnd_message.set_name('PER','IRC_412249_DOC_NO_PERSON');
182: fnd_message.raise_error;
183: end if;
184: close csr_person_id;
185: if p_party_id is not null then

Line 182: fnd_message.raise_error;

178: hr_utility.set_location(l_proc, 30);
179: if csr_person_id%notfound then
180: close csr_person_id;
181: fnd_message.set_name('PER','IRC_412249_DOC_NO_PERSON');
182: fnd_message.raise_error;
183: end if;
184: close csr_person_id;
185: if p_party_id is not null then
186: if p_party_id<>l_party_id then

Line 187: fnd_message.set_name('PER','IRC_412033_RTM_INV_PARTY_ID');

183: end if;
184: close csr_person_id;
185: if p_party_id is not null then
186: if p_party_id<>l_party_id then
187: fnd_message.set_name('PER','IRC_412033_RTM_INV_PARTY_ID');
188: fnd_message.raise_error;
189: end if;
190: else
191: p_party_id:=l_party_id;

Line 188: fnd_message.raise_error;

184: close csr_person_id;
185: if p_party_id is not null then
186: if p_party_id<>l_party_id then
187: fnd_message.set_name('PER','IRC_412033_RTM_INV_PARTY_ID');
188: fnd_message.raise_error;
189: end if;
190: else
191: p_party_id:=l_party_id;
192: end if;

Line 254: fnd_message.set_name('PER','IRC_MAX_DOC_UPLOADS_EXCEEDED');

250: hr_utility.set_location(l_proc, 20);
251: l_max_count := to_number(fnd_profile.value('IRC_MONTHLY_DOC_UPLOAD_COUNT'));
252: if l_count >= l_max_count then
253: hr_utility.set_location(l_proc, 30);
254: fnd_message.set_name('PER','IRC_MAX_DOC_UPLOADS_EXCEEDED');
255: fnd_message.raise_error;
256: end if;
257: hr_utility.set_location('Leaving'||l_proc, 40);
258: --

Line 255: fnd_message.raise_error;

251: l_max_count := to_number(fnd_profile.value('IRC_MONTHLY_DOC_UPLOAD_COUNT'));
252: if l_count >= l_max_count then
253: hr_utility.set_location(l_proc, 30);
254: fnd_message.set_name('PER','IRC_MAX_DOC_UPLOADS_EXCEEDED');
255: fnd_message.raise_error;
256: end if;
257: hr_utility.set_location('Leaving'||l_proc, 40);
258: --
259: End chk_monthly_doc_upload_count;

Line 315: fnd_message.set_name('PER','IRC_TOT_DOC_UPLOADS_EXCEEDED');

311: hr_utility.set_location(l_proc, 20);
312: l_max_count := to_number(fnd_profile.value('IRC_TOTAL_DOC_UPLOAD_COUNT'));
313: if l_count >= l_max_count then
314: hr_utility.set_location(l_proc, 30);
315: fnd_message.set_name('PER','IRC_TOT_DOC_UPLOADS_EXCEEDED');
316: fnd_message.raise_error;
317: end if;
318: hr_utility.set_location('Leaving'||l_proc, 40);
319: --

Line 316: fnd_message.raise_error;

312: l_max_count := to_number(fnd_profile.value('IRC_TOTAL_DOC_UPLOAD_COUNT'));
313: if l_count >= l_max_count then
314: hr_utility.set_location(l_proc, 30);
315: fnd_message.set_name('PER','IRC_TOT_DOC_UPLOADS_EXCEEDED');
316: fnd_message.raise_error;
317: end if;
318: hr_utility.set_location('Leaving'||l_proc, 40);
319: --
320: End chk_total_doc_upload_count;

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

428: IF NOT irc_ido_shd.api_updating
429: (p_document_id => p_rec.document_id
430: ,p_object_version_number => p_rec.object_version_number
431: ) THEN
432: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
433: fnd_message.set_token('PROCEDURE ', l_proc);
434: fnd_message.set_token('STEP ', '5');
435: fnd_message.raise_error;
436: END IF;

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

429: (p_document_id => p_rec.document_id
430: ,p_object_version_number => p_rec.object_version_number
431: ) THEN
432: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
433: fnd_message.set_token('PROCEDURE ', l_proc);
434: fnd_message.set_token('STEP ', '5');
435: fnd_message.raise_error;
436: END IF;
437: --

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

430: ,p_object_version_number => p_rec.object_version_number
431: ) THEN
432: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
433: fnd_message.set_token('PROCEDURE ', l_proc);
434: fnd_message.set_token('STEP ', '5');
435: fnd_message.raise_error;
436: END IF;
437: --
438: --

Line 435: fnd_message.raise_error;

431: ) THEN
432: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
433: fnd_message.set_token('PROCEDURE ', l_proc);
434: fnd_message.set_token('STEP ', '5');
435: fnd_message.raise_error;
436: END IF;
437: --
438: --
439: EXCEPTION