DBA Data[Home] [Help]

APPS.GHR_PRE_BUS dependencies on HR_UTILITY

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

18: l_error exception;
19: l_argument varchar2(30);
20: --
21: Begin
22: hr_utility.set_location( ' Entering:' ||l_proc, 10);
23: --
24: -- Only proceed with validation of a row exists for
25: -- the current record in the HR schema
26: --

Line 31: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');

27: if not ghr_pre_shd.api_updating
28: (p_pa_remark_id => p_rec.pa_remark_id
29: ,p_object_version_number => p_rec.object_version_number
30: ) then
31: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
32: hr_utility.set_message('PROCEDURE',l_proc);
33: hr_utility.set_message('STEP', '20');
34: end if;
35: hr_utility.set_location(l_proc,30);

Line 32: hr_utility.set_message('PROCEDURE',l_proc);

28: (p_pa_remark_id => p_rec.pa_remark_id
29: ,p_object_version_number => p_rec.object_version_number
30: ) then
31: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
32: hr_utility.set_message('PROCEDURE',l_proc);
33: hr_utility.set_message('STEP', '20');
34: end if;
35: hr_utility.set_location(l_proc,30);
36: --

Line 33: hr_utility.set_message('STEP', '20');

29: ,p_object_version_number => p_rec.object_version_number
30: ) then
31: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
32: hr_utility.set_message('PROCEDURE',l_proc);
33: hr_utility.set_message('STEP', '20');
34: end if;
35: hr_utility.set_location(l_proc,30);
36: --
37: if nvl(p_rec.pa_request_id,hr_api.g_number)

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

31: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
32: hr_utility.set_message('PROCEDURE',l_proc);
33: hr_utility.set_message('STEP', '20');
34: end if;
35: hr_utility.set_location(l_proc,30);
36: --
37: if nvl(p_rec.pa_request_id,hr_api.g_number)
38: <> nvl(ghr_pre_shd.g_old_rec.pa_request_id,hr_api.g_number) then
39: l_argument := 'pa_request_id';

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

44: l_argument := 'remark_id';
45: raise l_error;
46: end if;
47:
48: hr_utility.set_location(l_proc,20);
49: --
50: exception
51: when l_error then
52: hr_api.argument_changed_error

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

63: --
64: l_proc varchar2(72) := g_package||'insert_validate';
65: --
66: Begin
67: hr_utility.set_location('Entering:'||l_proc, 5);
68: --
69: -- Call all supporting business operations
70: --
71: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

67: hr_utility.set_location('Entering:'||l_proc, 5);
68: --
69: -- Call all supporting business operations
70: --
71: hr_utility.set_location(' Leaving:'||l_proc, 10);
72: End insert_validate;
73: --
74: -- ----------------------------------------------------------------------------
75: -- |---------------------------< update_validate >----------------------------|

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

78: --
79: l_proc varchar2(72) := g_package||'update_validate';
80: --
81: Begin
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: --
84: -- Call all supporting business operations
85: -- call chk_non_updateable_args
86: chk_non_updateable_args (p_rec => p_rec);

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

83: --
84: -- Call all supporting business operations
85: -- call chk_non_updateable_args
86: chk_non_updateable_args (p_rec => p_rec);
87: hr_utility.set_location(' Leaving:'||l_proc, 10);
88: End update_validate;
89: --
90: -- ----------------------------------------------------------------------------
91: -- |---------------------------< delete_validate >----------------------------|

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

94: --
95: l_proc varchar2(72) := g_package||'delete_validate';
96: --
97: Begin
98: hr_utility.set_location('Entering:'||l_proc, 5);
99: --
100: -- Call all supporting business operations
101: --
102: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

98: hr_utility.set_location('Entering:'||l_proc, 5);
99: --
100: -- Call all supporting business operations
101: --
102: hr_utility.set_location(' Leaving:'||l_proc, 10);
103: End delete_validate;
104: --
105: end ghr_pre_bus;