DBA Data[Home] [Help]

APPS.PER_BBA_BUS dependencies on HR_UTILITY

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

37: l_proc varchar2(72) := g_package||'set_security_group_id';
38: --
39: begin
40: --
41: hr_utility.set_location('Entering:'|| l_proc, 10);
42: --
43: -- Ensure that all the mandatory parameter are not null
44: --
45: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

66: hr_api.set_security_group_id
67: (p_security_group_id => l_security_group_id
68: );
69: --
70: hr_utility.set_location(' Leaving:'|| l_proc, 20);
71: --
72: end set_security_group_id;
73: --
74: -- ---------------------------------------------------------------------------

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

93: l_proc varchar2(72) := g_package||'return_legislation_code';
94: --
95: begin
96: --
97: hr_utility.set_location('Entering:'|| l_proc, 10);
98: --
99: -- Ensure that all the mandatory parameter are not null
100: --
101: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

108: -- call to this function. Just return the value in the global
109: -- variable.
110: --
111: l_legislation_code := g_legislation_code;
112: hr_utility.set_location(l_proc, 20);
113: else
114: --
115: -- The ID is different to the last call to this function
116: -- or this is the first call to this function.

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

125: close csr_leg_code;
126: fnd_message.set_name('PER','HR_7220_INVALID_PRIMARY_KEY');
127: fnd_message.raise_error;
128: end if;
129: hr_utility.set_location(l_proc,30);
130: --
131: -- Set the global variables so the values are
132: -- available for the next call to this function.
133: --

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

134: close csr_leg_code;
135: g_balance_amount_id := p_balance_amount_id;
136: g_legislation_code := l_legislation_code;
137: end if;
138: hr_utility.set_location(' Leaving:'|| l_proc, 40);
139: return l_legislation_code;
140: end return_legislation_code;
141: --
142: -- ----------------------------------------------------------------------------

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

173: --
174: l_proc varchar2(72) := g_package || 'chk_df';
175: --
176: begin
177: hr_utility.set_location('Entering:'||l_proc,10);
178: --
179: if ((p_rec.balance_amount_id is not null) and (
180: nvl(per_bba_shd.g_old_rec.bba_attribute_category, hr_api.g_varchar2) <>
181: nvl(p_rec.bba_attribute_category, hr_api.g_varchar2) or

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

312: ,p_attribute30_value => p_rec.bba_attribute30
313: );
314: end if;
315: --
316: hr_utility.set_location(' Leaving:'||l_proc,20);
317: end chk_df;
318: --
319: -- ----------------------------------------------------------------------------
320: -- |----------------------< check_non_updateable_args >-----------------------|

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

349: l_error EXCEPTION;
350: l_argument varchar2(30);
351: --
352: Begin
353: hr_utility.set_location('Entering:'||l_proc,5);
354: --
355: -- Only proceed with the validation if a row exists for the current
356: -- record in the HR Schema.
357: --

Line 362: hr_utility.set_message(800, 'HR_6153_ALL_PROCEDURE_FAIL');

358: IF NOT per_bba_shd.api_updating
359: (p_balance_amount_id => p_rec.balance_amount_id
360: ,p_object_version_number => p_rec.object_version_number
361: ) THEN
362: hr_utility.set_message(800, 'HR_6153_ALL_PROCEDURE_FAIL');
363: hr_utility.set_message_token('PROCEDURE ', l_proc);
364: hr_utility.set_message_token('STEP ', '5');
365: END IF;
366: --

Line 363: hr_utility.set_message_token('PROCEDURE ', l_proc);

359: (p_balance_amount_id => p_rec.balance_amount_id
360: ,p_object_version_number => p_rec.object_version_number
361: ) THEN
362: hr_utility.set_message(800, 'HR_6153_ALL_PROCEDURE_FAIL');
363: hr_utility.set_message_token('PROCEDURE ', l_proc);
364: hr_utility.set_message_token('STEP ', '5');
365: END IF;
366: --
367: hr_utility.set_location(l_proc,10);

Line 364: hr_utility.set_message_token('STEP ', '5');

360: ,p_object_version_number => p_rec.object_version_number
361: ) THEN
362: hr_utility.set_message(800, 'HR_6153_ALL_PROCEDURE_FAIL');
363: hr_utility.set_message_token('PROCEDURE ', l_proc);
364: hr_utility.set_message_token('STEP ', '5');
365: END IF;
366: --
367: hr_utility.set_location(l_proc,10);
368: --

Line 367: hr_utility.set_location(l_proc,10);

363: hr_utility.set_message_token('PROCEDURE ', l_proc);
364: hr_utility.set_message_token('STEP ', '5');
365: END IF;
366: --
367: hr_utility.set_location(l_proc,10);
368: --
369: IF nvl(p_rec.balance_type_id, hr_api.g_number) <>
370: per_bba_shd.g_old_rec.balance_type_id then
371: l_argument:='balance_type_id';

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

370: per_bba_shd.g_old_rec.balance_type_id then
371: l_argument:='balance_type_id';
372: raise l_error;
373: END IF;
374: hr_utility.set_location(l_proc,20);
375: --
376: IF nvl(p_rec.processed_assignment_id, hr_api.g_number) <>
377: per_bba_shd.g_old_rec.processed_assignment_id then
378: l_argument:='processed_assignment_id';

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

377: per_bba_shd.g_old_rec.processed_assignment_id then
378: l_argument:='processed_assignment_id';
379: raise l_error;
380: END IF;
381: hr_utility.set_location(l_proc,30);
382: --
383: IF nvl(p_rec.business_group_id, hr_api.g_number) <>
384: per_bba_shd.g_old_rec.business_group_id then
385: l_argument:='business_group_id';

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

384: per_bba_shd.g_old_rec.business_group_id then
385: l_argument:='business_group_id';
386: raise l_error;
387: END IF;
388: hr_utility.set_location(l_proc,40);
389: --
390: EXCEPTION
391: WHEN l_error THEN
392: hr_api.argument_changed_error

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

393: (p_api_name => l_proc
394: ,p_argument => l_argument);
395: WHEN OTHERS THEN
396: RAISE;
397: hr_utility.set_location(' Leaving:'||l_proc,20);
398: End chk_non_updateable_args;
399: --
400: -- ----------------------------------------------------------------------------
401: -- |----------------------< chk_processed_asg_id >----------------------------|

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

429: --
430: l_temp VARCHAR2(1);
431: l_proc varchar2(72) := g_package || 'chk_processed_asg_id';
432: BEGIN
433: hr_utility.set_location('Entering:'||l_proc,5);
434: --
435: OPEN csr_chk_processed_asg_id ;
436: FETCH csr_chk_processed_asg_id INTO l_temp;
437: --

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

446: --
447: END IF;
448: CLOSE csr_chk_processed_asg_id;
449: --
450: hr_utility.set_location(' Leaving:'||l_proc,20);
451: END chk_processed_asg_id;
452: --
453: -- ----------------------------------------------------------------------------
454: -- |----------------------< chk_balance_type_id >-----------------------------|

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

513: --
514: l_proc varchar2(72) := g_package||'insert_validate';
515: --
516: Begin
517: hr_utility.set_location('Entering:'||l_proc, 5);
518: --
519: -- Call all supporting business operations
520: --
521: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

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

530: -- Validate flexfields
531: -- ===================
532: chk_df(p_rec => p_rec);
533: --
534: hr_utility.set_location(' Leaving:'||l_proc, 10);
535: End insert_validate;
536: --
537: -- ----------------------------------------------------------------------------
538: -- |---------------------------< update_validate >----------------------------|

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

543: --
544: l_proc varchar2(72) := g_package||'update_validate';
545: --
546: Begin
547: hr_utility.set_location('Entering:'||l_proc, 5);
548: --
549: -- Call all supporting business operations
550: --
551: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

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

556: -- ===================
557: chk_df(p_rec => p_rec);
558: --
559: --
560: hr_utility.set_location(' Leaving:'||l_proc, 10);
561: End update_validate;
562: --
563: -- ----------------------------------------------------------------------------
564: -- |---------------------------< delete_validate >----------------------------|

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

567: --
568: l_proc varchar2(72) := g_package||'delete_validate';
569: --
570: Begin
571: hr_utility.set_location('Entering:'||l_proc, 5);
572: --
573: -- Call all supporting business operations
574: --
575: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

571: hr_utility.set_location('Entering:'||l_proc, 5);
572: --
573: -- Call all supporting business operations
574: --
575: hr_utility.set_location(' Leaving:'||l_proc, 10);
576: End delete_validate;
577: --
578: end per_bba_bus;