DBA Data[Home] [Help]

APPS.PER_ABV_BUS dependencies on HR_UTILITY

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

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

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

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

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

96: l_proc varchar2(72) := g_package||'return_legislation_code';
97: --
98: Begin
99: --
100: hr_utility.set_location('Entering:'|| l_proc, 10);
101: --
102: -- Ensure that all the mandatory parameter are not null
103: --
104: hr_api.mandatory_arg_error

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

114: -- call to this function. Just return the value in the global
115: -- variable.
116: --
117: l_legislation_code := per_abv_bus.g_legislation_code;
118: hr_utility.set_location(l_proc, 20);
119: else
120: --
121: -- The ID is different to the last call to this function
122: -- or this is the first call to this function.

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

131: close csr_leg_code;
132: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
133: fnd_message.raise_error;
134: end if;
135: hr_utility.set_location(l_proc,30);
136: --
137: -- Set the global variables so the values are
138: -- available for the next call to this function.
139: --

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

140: close csr_leg_code;
141: per_abv_bus.g_assignment_budget_value_id := p_assignment_budget_value_id;
142: per_abv_bus.g_legislation_code := l_legislation_code;
143: end if;
144: hr_utility.set_location(' Leaving:'|| l_proc, 40);
145: return l_legislation_code;
146: end return_legislation_code;
147: --
148: -- ----------------------------------------------------------------------------

Line 241: hr_utility.set_message(801,'HR_289395_INVALID_ABV_UNIT');

237:
238: if not c%found then
239: --
240: close c;
241: hr_utility.set_message(801,'HR_289395_INVALID_ABV_UNIT');
242: hr_utility.raise_error;
243: --
244: end if;
245:

Line 242: hr_utility.raise_error;

238: if not c%found then
239: --
240: close c;
241: hr_utility.set_message(801,'HR_289395_INVALID_ABV_UNIT');
242: hr_utility.raise_error;
243: --
244: end if;
245:
246: close c;

Line 283: hr_utility.set_message(801,'HR_289396_ABV_ASSIGNMENT_ERROR');

279:
280: if not c%found then
281: --
282: close c;
283: hr_utility.set_message(801,'HR_289396_ABV_ASSIGNMENT_ERROR');
284: hr_utility.raise_error;
285: --
286: end if;
287:

Line 284: hr_utility.raise_error;

280: if not c%found then
281: --
282: close c;
283: hr_utility.set_message(801,'HR_289396_ABV_ASSIGNMENT_ERROR');
284: hr_utility.raise_error;
285: --
286: end if;
287:
288: close c;

Line 324: hr_utility.set_message(801,'HR_289367_ABV_DUPLICATE_UNIT');

320:
321: if c%found then
322: --
323: close c;
324: hr_utility.set_message(801,'HR_289367_ABV_DUPLICATE_UNIT');
325: hr_utility.raise_error;
326: --
327: end if;
328:

Line 325: hr_utility.raise_error;

321: if c%found then
322: --
323: close c;
324: hr_utility.set_message(801,'HR_289367_ABV_DUPLICATE_UNIT');
325: hr_utility.raise_error;
326: --
327: end if;
328:
329: close c;

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

549: --
550: l_proc varchar2(72) := g_package||'insert_validate';
551: --
552: Begin
553: hr_utility.set_location('Entering:'||l_proc, 5);
554: --
555: -- Call all supporting business operations
556: --
557: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

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

569: ,p_effective_date => p_effective_date);
570:
571: --
572:
573: hr_utility.set_location(' Leaving:'||l_proc, 10);
574: End insert_validate;
575: --
576: -- ----------------------------------------------------------------------------
577: -- |---------------------------< update_validate >----------------------------|

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

586: --
587: l_proc varchar2(72) := g_package||'update_validate';
588: --
589: Begin
590: hr_utility.set_location('Entering:'||l_proc, 5);
591: --
592: -- Call all supporting business operations
593: --
594: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

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

615: ,p_rec => p_rec
616: );
617: --
618: --
619: hr_utility.set_location(' Leaving:'||l_proc, 10);
620: End update_validate;
621: --
622: -- ----------------------------------------------------------------------------
623: -- |---------------------------< delete_validate >----------------------------|

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

632: --
633: l_proc varchar2(72) := g_package||'delete_validate';
634: --
635: Begin
636: hr_utility.set_location('Entering:'||l_proc, 5);
637: --
638: -- Call all supporting business operations
639: --
640: dt_delete_validate

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

643: ,p_validation_end_date => p_validation_end_date
644: ,p_assignment_budget_value_id => p_rec.assignment_budget_value_id
645: );
646: --
647: hr_utility.set_location(' Leaving:'||l_proc, 10);
648: End delete_validate;
649: --
650: end per_abv_bus;