DBA Data[Home] [Help]

APPS.HR_API_HOOK_INTERNAL dependencies on HR_UTILITY

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

38: where hah.hook_package = p_hook_package
39: and hah.hook_procedure = p_hook_procedure;
40:
41: begin
42: hr_utility.set_location('Entering:'|| l_proc, 5);
43: --
44: -- Set l_effective_date equal to truncated version of p_effective_date for
45: -- API work. Stops dates being passed to row handlers with time portion.
46: --

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

51: if p_validate then
52: savepoint create_api_hook;
53: end if;
54: --
55: hr_utility.set_location(l_proc, 10);
56: --
57: -- Validation in addition to Table Handlers
58: --
59: -- None required.

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

85: end if;
86:
87: close csr_valid_combo;
88: --
89: hr_utility.set_location(l_proc, 20);
90: --
91: -- When in validation only mode raise the Validate_Enabled exception
92: --
93: if p_validate then

Line 101: hr_utility.set_location(' Leaving:'||l_proc, 100);

97: -- Set all output arguments
98: --
99: p_api_hook_id := l_api_hook_id;
100: --
101: hr_utility.set_location(' Leaving:'||l_proc, 100);
102: exception
103: when hr_api.validate_enabled then
104: --
105: -- Only set output warning arguments

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

129: --
130: l_proc varchar2(72) := g_package||'delete_api_hook';
131: --
132: begin
133: hr_utility.set_location('Entering:'|| l_proc, 5);
134: --
135: -- Issue a savepoint if operating in validation only mode.
136: --
137: if p_validate then

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

137: if p_validate then
138: savepoint delete_api_hook;
139: end if;
140: --
141: hr_utility.set_location(l_proc, 10);
142: --
143: -- Validation in addition to Table Handlers
144: --
145: -- None required.

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

148: --
149: hr_ahk_del.del
150: (p_api_hook_id => p_api_hook_id);
151: --
152: hr_utility.set_location(l_proc, 20);
153: --
154: -- When in validation only mode raise the Validate_Enabled exception
155: --
156: if p_validate then

Line 160: hr_utility.set_location(' Leaving:'||l_proc, 100);

156: if p_validate then
157: raise hr_api.validate_enabled;
158: end if;
159: --
160: hr_utility.set_location(' Leaving:'||l_proc, 100);
161: exception
162: when hr_api.validate_enabled then
163: --
164: -- As the Validate_Enabled exception has been raised

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

194: --
195: l_proc varchar2(72) := g_package||'update_api_hook';
196: --
197: begin
198: hr_utility.set_location('Entering:'|| l_proc, 5);
199: --
200: -- Set l_effective_date equal to truncated version of p_effective_date for
201: -- API work. Stops dates being passed to row handlers with time portion.
202: --

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

207: if p_validate then
208: savepoint update_api_hook;
209: end if;
210: --
211: hr_utility.set_location(l_proc, 10);
212: --
213: -- Validation in addition to Table Handlers
214: --
215: -- Update the hook row.

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

223: p_legislation_package => p_legislation_package,
224: p_legislation_function => p_legislation_function
225: );
226: --
227: hr_utility.set_location(l_proc, 20);
228: --
229: -- When in validation only mode raise the Validate_Enabled exception
230: --
231: if p_validate then

Line 237: hr_utility.set_location(' Leaving:'||l_proc, 100);

233: end if;
234: --
235: -- Set all output arguments
236: --
237: hr_utility.set_location(' Leaving:'||l_proc, 100);
238: exception
239: when hr_api.validate_enabled then
240: --
241: -- As the Validate_Enabled exception has been raised