DBA Data[Home] [Help]

APPS.IRC_CMC_BUS dependencies on HR_UTILITY

Line 49: hr_utility.set_location('Entering:'|| l_proc, 10);

45: l_legislation_code varchar2(150);
46: --
47: begin
48: --
49: hr_utility.set_location('Entering:'|| l_proc, 10);
50: --
51: -- Ensure that all the mandatory parameter are not null
52: --
53: hr_api.mandatory_arg_error

Line 89: hr_utility.set_location(' Leaving:'|| l_proc, 20);

85: --
86: hr_api.set_legislation_context(l_legislation_code);
87: end if;
88: --
89: hr_utility.set_location(' Leaving:'|| l_proc, 20);
90: --
91: end set_security_group_id;
92: --
93: -- ---------------------------------------------------------------------------

Line 124: hr_utility.set_location('Entering:'|| l_proc, 10);

120: l_proc varchar2(72) := g_package||'return_legislation_code';
121: --
122: Begin
123: --
124: hr_utility.set_location('Entering:'|| l_proc, 10);
125: --
126: -- Ensure that all the mandatory parameter are not null
127: --
128: hr_api.mandatory_arg_error

Line 142: hr_utility.set_location(l_proc, 20);

138: -- call to this function. Just return the value in the global
139: -- variable.
140: --
141: l_legislation_code := irc_cmc_bus.g_legislation_code;
142: hr_utility.set_location(l_proc, 20);
143: else
144: --
145: -- The ID is different to the last call to this function
146: -- or this is the first call to this function.

Line 159: hr_utility.set_location(l_proc,30);

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
162: -- available for the next call to this function.
163: --

Line 168: hr_utility.set_location(' Leaving:'|| l_proc, 40);

164: close csr_leg_code;
165: irc_cmc_bus.g_communication_id := p_communication_id;
166: irc_cmc_bus.g_legislation_code := l_legislation_code;
167: end if;
168: hr_utility.set_location(' Leaving:'|| l_proc, 40);
169: return l_legislation_code;
170: end return_legislation_code;
171: --
172: -- ----------------------------------------------------------------------------

Line 300: hr_utility.set_location('Entering: '|| l_proc, 10);

296: l_proc varchar2(72) := g_package||'chk_status';
297: l_api_updating boolean;
298: --
299: begin
300: hr_utility.set_location('Entering: '|| l_proc, 10);
301: l_api_updating := irc_cmc_shd.api_updating
302: (p_communication_id => p_communication_id,
303: p_object_version_number => p_object_version_number);
304: --

Line 319: hr_utility.set_location('Leaving: '|| l_proc, 20);

315: then
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;

Line 324: hr_utility.set_location('Leaving: '|| l_proc, 30);

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;
326: --
327: -- ----------------------------------------------------------------------------
328: -- |-----------------------------< chk_object_id >-----------------------------|

Line 376: hr_utility.set_location('Entering:'||l_proc,10);

372: where ic.object_id = p_object_id
373: and ic.object_type = p_object_type;
374: --
375: begin
376: hr_utility.set_location('Entering:'||l_proc,10);
377: -- Check that object_id is not null.
378: hr_api.mandatory_arg_error
379: (p_api_name => l_proc
380: ,p_argument => 'OBJECT_ID'

Line 392: hr_utility.set_location(l_proc,20);

388: ,p_argument_value => p_object_type
389: );
390:
391: -- Check that object_id exists in per_all_assignments_f
392: hr_utility.set_location(l_proc,20);
393: open csr_object_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

Line 395: hr_utility.set_location(l_proc,30);

391: -- Check that object_id exists in per_all_assignments_f
392: hr_utility.set_location(l_proc,20);
393: open csr_object_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;

Line 407: hr_utility.set_location(l_proc,40);

403: -- Check that combination of (object_id,object_type) is unique.
404:
405: open csr_object_type;
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;

Line 415: hr_utility.set_location(' Leaving:'||l_proc,50);

411: fnd_message.raise_error;
412: end if;
413: close csr_object_type;
414:
415: hr_utility.set_location(' Leaving:'||l_proc,50);
416: exception
417: when app_exception.application_exception then
418: if hr_multi_message.exception_add
419: (p_associated_column1 =>

Line 422: hr_utility.set_location(' Leaving:'||l_proc,60);

418: if hr_multi_message.exception_add
419: (p_associated_column1 =>
420: 'IRC_COMMUNICATIONS.OBJECT_ID'
421: ) then
422: hr_utility.set_location(' Leaving:'||l_proc,60);
423: raise;
424: end if;
425: hr_utility.set_location(' Leaving:'||l_proc,70);
426: end chk_object_id;

Line 425: hr_utility.set_location(' Leaving:'||l_proc,70);

421: ) then
422: hr_utility.set_location(' Leaving:'||l_proc,60);
423: raise;
424: end if;
425: hr_utility.set_location(' Leaving:'||l_proc,70);
426: end chk_object_id;
427: --
428: -- ----------------------------------------------------------------------------
429: -- |-----------------------------< chk_object_type >-----------------------------|

Line 459: hr_utility.set_location('Entering:'||l_proc,10);

455: --
456: l_proc varchar2(72) := g_package || 'chk_object_type';
457: --
458: begin
459: hr_utility.set_location('Entering:'||l_proc,10);
460: -- Check that object_type is not null.
461: hr_api.mandatory_arg_error
462: (p_api_name => l_proc
463: ,p_argument => 'OBJECT_TYPE'

Line 471: hr_utility.set_location(' Leaving:'||l_proc,20);

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
474: if hr_multi_message.exception_add
475: (p_associated_column1 =>

Line 478: hr_utility.set_location(' Leaving:'||l_proc,30);

474: if hr_multi_message.exception_add
475: (p_associated_column1 =>
476: 'IRC_COMMUNICATIONS.OBJECT_TYPE'
477: ) then
478: hr_utility.set_location(' Leaving:'||l_proc,30);
479: raise;
480: end if;
481: hr_utility.set_location(' Leaving:'||l_proc,40);
482: end chk_object_type;

Line 481: hr_utility.set_location(' Leaving:'||l_proc,40);

477: ) then
478: hr_utility.set_location(' Leaving:'||l_proc,30);
479: raise;
480: end if;
481: hr_utility.set_location(' Leaving:'||l_proc,40);
482: end chk_object_type;
483: --
484: -- ---------------------------------------------------------------------------
485: -- |----------------------------< chk_start_end_date >------------------------------|

Line 521: hr_utility.set_location('Entering: '|| l_proc, 10);

517: l_proc varchar2(72) := g_package||'chk_start_end_date';
518: l_api_updating boolean;
519: --
520: begin
521: hr_utility.set_location('Entering: '|| l_proc, 10);
522: l_api_updating := irc_cmc_shd.api_updating
523: (p_communication_id => p_communication_id,
524: p_object_version_number => p_object_version_number);
525: --

Line 546: hr_utility.set_location(' Leaving:'||l_proc, 20);

542: end if;
543: --
544: end if;
545: --
546: hr_utility.set_location(' Leaving:'||l_proc, 20);
547: --
548: End chk_start_end_date;
549: --
550: -- ----------------------------------------------------------------------------

Line 590: hr_utility.set_location('Entering:'||l_proc, 5);

586: --
587: l_proc varchar2(72) := g_package||'insert_validate';
588: --
589: Begin
590: hr_utility.set_location('Entering:'||l_proc, 5);
591: --
592: -- Call all supporting business operations
593: --
594: --

Line 608: hr_utility.set_location(' Leaving:'||l_proc, 10);

604: irc_cmc_bus.insert_update_validate(p_effective_date, p_rec);
605: irc_cmc_bus.chk_object_type(p_rec.object_type);
606: irc_cmc_bus.chk_object_id(p_rec.object_id, p_rec.object_type);
607: --
608: hr_utility.set_location(' Leaving:'||l_proc, 10);
609: End insert_validate;
610: --
611: -- ----------------------------------------------------------------------------
612: -- |---------------------------< update_validate >----------------------------|

Line 622: hr_utility.set_location('Entering:'||l_proc, 5);

618: --
619: l_proc varchar2(72) := g_package||'update_validate';
620: --
621: Begin
622: hr_utility.set_location('Entering:'||l_proc, 5);
623: --
624: -- Call all supporting business operations
625: --
626: --

Line 643: hr_utility.set_location(' Leaving:'||l_proc, 10);

639: );
640: --
641: irc_cmc_bus.insert_update_validate(p_effective_date, p_rec);
642: --
643: hr_utility.set_location(' Leaving:'||l_proc, 10);
644: End update_validate;
645: --
646: -- ----------------------------------------------------------------------------
647: -- |---------------------------< delete_validate >----------------------------|

Line 656: hr_utility.set_location('Entering:'||l_proc, 5);

652: --
653: l_proc varchar2(72) := g_package||'delete_validate';
654: --
655: Begin
656: hr_utility.set_location('Entering:'||l_proc, 5);
657: --
658: -- Call all supporting business operations
659: --
660: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 660: hr_utility.set_location(' Leaving:'||l_proc, 10);

656: hr_utility.set_location('Entering:'||l_proc, 5);
657: --
658: -- Call all supporting business operations
659: --
660: hr_utility.set_location(' Leaving:'||l_proc, 10);
661: End delete_validate;
662: --
663: end irc_cmc_bus;