DBA Data[Home] [Help]

APPS.IRC_CMC_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_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_cmc_shd.api_updating
212: (p_communication_id => p_rec.communication_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_id => p_rec.communication_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 320: fnd_message.set_name('PER','IRC_412416_INVALID_COMM_STATUS');

316: --
317: -- raise error as does not exist as lookup
318: --
319: hr_utility.set_location('Leaving: '|| l_proc, 20);
320: fnd_message.set_name('PER','IRC_412416_INVALID_COMM_STATUS');
321: fnd_message.raise_error;
322: end if;
323: end if;
324: hr_utility.set_location('Leaving: '|| l_proc, 30);

Line 321: fnd_message.raise_error;

317: -- raise error as does not exist as lookup
318: --
319: hr_utility.set_location('Leaving: '|| l_proc, 20);
320: fnd_message.set_name('PER','IRC_412416_INVALID_COMM_STATUS');
321: fnd_message.raise_error;
322: end if;
323: end if;
324: hr_utility.set_location('Leaving: '|| l_proc, 30);
325: end chk_status;

Line 398: fnd_message.set_name('PER','IRC_412417_BAD_COMM_OBJ_ID');

394: fetch csr_object_id into l_object_id;
395: hr_utility.set_location(l_proc,30);
396: if csr_object_id%NOTFOUND then
397: close csr_object_id;
398: fnd_message.set_name('PER','IRC_412417_BAD_COMM_OBJ_ID');
399: fnd_message.raise_error;
400: end if;
401: close csr_object_id;
402:

Line 399: fnd_message.raise_error;

395: hr_utility.set_location(l_proc,30);
396: if csr_object_id%NOTFOUND then
397: close csr_object_id;
398: fnd_message.set_name('PER','IRC_412417_BAD_COMM_OBJ_ID');
399: fnd_message.raise_error;
400: end if;
401: close csr_object_id;
402:
403: -- Check that combination of (object_id,object_type) is unique.

Line 410: fnd_message.set_name('PER','IRC_412418_OBJID_OBJTYP_NOT_UNQ');

406: fetch csr_object_type into l_object_type;
407: hr_utility.set_location(l_proc,40);
408: if csr_object_type%FOUND then
409: close csr_object_type;
410: fnd_message.set_name('PER','IRC_412418_OBJID_OBJTYP_NOT_UNQ');
411: fnd_message.raise_error;
412: end if;
413: close csr_object_type;
414:

Line 411: fnd_message.raise_error;

407: hr_utility.set_location(l_proc,40);
408: if csr_object_type%FOUND then
409: close csr_object_type;
410: fnd_message.set_name('PER','IRC_412418_OBJID_OBJTYP_NOT_UNQ');
411: fnd_message.raise_error;
412: end if;
413: close csr_object_type;
414:
415: hr_utility.set_location(' Leaving:'||l_proc,50);

Line 468: fnd_message.set_name('PER','IRC_412419_BAD_OBJECT_TYPE');

464: ,p_argument_value => p_object_type
465: );
466:
467: if p_object_type <> 'APPL' then
468: fnd_message.set_name('PER','IRC_412419_BAD_OBJECT_TYPE');
469: fnd_message.raise_error;
470: end if;
471: hr_utility.set_location(' Leaving:'||l_proc,20);
472: exception

Line 469: fnd_message.raise_error;

465: );
466:
467: if p_object_type <> 'APPL' then
468: fnd_message.set_name('PER','IRC_412419_BAD_OBJECT_TYPE');
469: fnd_message.raise_error;
470: end if;
471: hr_utility.set_location(' Leaving:'||l_proc,20);
472: exception
473: when app_exception.application_exception then

Line 539: fnd_message.set_name('PER','IRC_412420_START_DATE_BEFORE_END');

535: if p_start_date > nvl(p_end_date,hr_api.g_eot) then
536: --
537: -- raise error as start date should be less than or equal to end date.
538: --
539: fnd_message.set_name('PER','IRC_412420_START_DATE_BEFORE_END');
540: fnd_message.raise_error;
541: --
542: end if;
543: --

Line 540: fnd_message.raise_error;

536: --
537: -- raise error as start date should be less than or equal to end date.
538: --
539: fnd_message.set_name('PER','IRC_412420_START_DATE_BEFORE_END');
540: fnd_message.raise_error;
541: --
542: end if;
543: --
544: end if;