DBA Data[Home] [Help]

APPS.OTA_CME_BUS dependencies on HR_UTILITY

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

39: l_legislation_code varchar2(150);
40: --
41: begin
42: --
43: hr_utility.set_location('Entering:'|| l_proc, 10);
44: --
45: -- Ensure that all the mandatory parameter are not null
46: --
47: hr_api.mandatory_arg_error

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

79: --
80: hr_api.set_legislation_context(l_legislation_code);
81: end if;
82: --
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: --
85: end set_security_group_id;
86: --
87: -- ---------------------------------------------------------------------------

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

108: l_proc varchar2(72) := g_package||'return_legislation_code';
109: --
110: Begin
111: --
112: hr_utility.set_location('Entering:'|| l_proc, 10);
113: --
114: -- Ensure that all the mandatory parameter are not null
115: --
116: hr_api.mandatory_arg_error

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

126: -- call to this function. Just return the value in the global
127: -- variable.
128: --
129: l_legislation_code := ota_cme_bus.g_legislation_code;
130: hr_utility.set_location(l_proc, 20);
131: else
132: --
133: -- The ID is different to the last call to this function
134: -- or this is the first call to this function.

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

143: close csr_leg_code;
144: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
145: fnd_message.raise_error;
146: end if;
147: hr_utility.set_location(l_proc,30);
148: --
149: -- Set the global variables so the values are
150: -- available for the next call to this function.
151: --

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

152: close csr_leg_code;
153: ota_cme_bus.g_cert_mbr_enrollment_id := p_cert_mbr_enrollment_id;
154: ota_cme_bus.g_legislation_code := l_legislation_code;
155: end if;
156: hr_utility.set_location(' Leaving:'|| l_proc, 40);
157: return l_legislation_code;
158: end return_legislation_code;
159: --
160: -- ----------------------------------------------------------------------------

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

191: --
192: l_proc varchar2(72) := g_package || 'chk_df';
193: --
194: begin
195: hr_utility.set_location('Entering:'||l_proc,10);
196: --
197: if ((p_rec.cert_mbr_enrollment_id is not null) and (
198: nvl(ota_cme_shd.g_old_rec.attribute_category, hr_api.g_varchar2) <>
199: nvl(p_rec.attribute_category, hr_api.g_varchar2) or

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

290: ,p_attribute20_value => p_rec.attribute20
291: );
292: end if;
293: --
294: hr_utility.set_location(' Leaving:'||l_proc,20);
295: end chk_df;
296: --
297: -- ----------------------------------------------------------------------------
298: -- |-----------------------< chk_non_updateable_args >------------------------|

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

360: l_proc VARCHAR2(72) := g_package||'chk_member_status_code';
361: l_api_updating boolean;
362:
363: BEGIN
364: hr_utility.set_location(' Leaving:'||l_proc, 10);
365: --
366: -- check mandatory parameters has been set
367: --
368: hr_api.mandatory_arg_error

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

379: NVL(ota_cme_shd.g_old_rec.member_status_code,hr_api.g_varchar2) <>
380: NVL(p_member_status_code, hr_api.g_varchar2))
381: OR NOT l_api_updating AND p_member_status_code IS NOT NULL) THEN
382:
383: hr_utility.set_location(' Leaving:'||l_proc, 20);
384: --
385:
386: IF p_member_status_code IS NOT NULL THEN
387: IF hr_api.not_exists_in_hr_lookups

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

390: ,p_lookup_code => p_member_status_code) THEN
391: fnd_message.set_name('OTA','OTA_443668_CME_STAT_INVALID');
392: fnd_message.raise_error;
393: END IF;
394: hr_utility.set_location(' Leaving:'||l_proc, 30);
395:
396: END IF;
397:
398: END IF;

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

395:
396: END IF;
397:
398: END IF;
399: hr_utility.set_location(' Leaving:'||l_proc, 40);
400:
401: EXCEPTION
402:
403: WHEN app_exception.application_exception THEN

Line 408: hr_utility.set_location(' Leaving:'||l_proc, 42);

404:
405: IF hr_multi_message.exception_add
406: (p_associated_column1 => 'OTA_CERT_MBR_ENROLLMENTS.MEMBER_STATUS_CODE') THEN
407:
408: hr_utility.set_location(' Leaving:'||l_proc, 42);
409: RAISE;
410: END IF;
411:
412: hr_utility.set_location(' Leaving:'||l_proc, 44);

Line 412: hr_utility.set_location(' Leaving:'||l_proc, 44);

408: hr_utility.set_location(' Leaving:'||l_proc, 42);
409: RAISE;
410: END IF;
411:
412: hr_utility.set_location(' Leaving:'||l_proc, 44);
413:
414: END chk_member_status_code;
415: --
416: -- ----------------------------------------------------------------------------

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

423: --
424: l_proc varchar2(72) := g_package||'insert_validate';
425: --
426: Begin
427: hr_utility.set_location('Entering:'||l_proc, 5);
428: --
429: -- Call all supporting business operations
430: --
431: -- Validate Important Attributes

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

444: --
445: --
446: ota_cme_bus.chk_df(p_rec);
447: --
448: hr_utility.set_location(' Leaving:'||l_proc, 10);
449: End insert_validate;
450: --
451: -- ----------------------------------------------------------------------------
452: -- |---------------------------< update_validate >----------------------------|

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

458: --
459: l_proc varchar2(72) := g_package||'update_validate';
460: --
461: Begin
462: hr_utility.set_location('Entering:'||l_proc, 5);
463: --
464: -- Call all supporting business operations
465: --
466: -- Validate Important Attributes

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

484: --
485: --
486: ota_cme_bus.chk_df(p_rec);
487: --
488: hr_utility.set_location(' Leaving:'||l_proc, 10);
489: End update_validate;
490: --
491: -- ----------------------------------------------------------------------------
492: -- |---------------------------< delete_validate >----------------------------|

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

497: --
498: l_proc varchar2(72) := g_package||'delete_validate';
499: --
500: Begin
501: hr_utility.set_location('Entering:'||l_proc, 5);
502: --
503: -- Call all supporting business operations
504: --
505: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

501: hr_utility.set_location('Entering:'||l_proc, 5);
502: --
503: -- Call all supporting business operations
504: --
505: hr_utility.set_location(' Leaving:'||l_proc, 10);
506: End delete_validate;
507: --
508: end ota_cme_bus;