DBA Data[Home] [Help]

APPS.HXC_DEPOSIT_PROCESSES_API dependencies on HR_UTILITY

Line 7: g_debug boolean :=hr_utility.debug_enabled;

3: --
4: -- Package Variables
5: --
6: g_package varchar2(33) := ' hxc_deposit_processes_api.';
7: g_debug boolean :=hr_utility.debug_enabled;
8: --
9: -- ----------------------------------------------------------------------------
10: -- |--------------------------< create_deposit_processes >---------------------|
11: -- ----------------------------------------------------------------------------

Line 32: g_debug:=hr_utility.debug_enabled;

28: l_deposit_process_id hxc_deposit_processes.deposit_process_id%TYPE;
29: --
30: Begin
31: --
32: g_debug:=hr_utility.debug_enabled;
33: if g_debug then
34: l_proc := g_package||'create_deposit_processes ';
35: hr_utility.set_location('Entering:'|| l_proc, 10);
36: end if;

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

31: --
32: g_debug:=hr_utility.debug_enabled;
33: if g_debug then
34: l_proc := g_package||'create_deposit_processes ';
35: hr_utility.set_location('Entering:'|| l_proc, 10);
36: end if;
37: --
38: -- Issue a savepoint
39: --

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

39: --
40: savepoint create_deposit_processes;
41: --
42: if g_debug then
43: hr_utility.set_location(l_proc, 20);
44: end if;
45: --
46: -- Truncate the time portion from all IN date parameters
47: --

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

66: );
67: end;
68: --
69: if g_debug then
70: hr_utility.set_location(l_proc, 30);
71: end if;
72: --
73:
74: --

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

80: --
81: -- Process Logic
82: --
83: if g_debug then
84: hr_utility.set_location(l_proc, 40);
85: end if;
86: --
87: -- call row handler
88: --

Line 99: hr_utility.set_location(l_proc, 50);

95: ,p_object_version_number => l_object_version_number
96: );
97: --
98: if g_debug then
99: hr_utility.set_location(l_proc, 50);
100: end if;
101: --
102: -- Call After Process User Hook
103: --

Line 122: hr_utility.set_location(l_proc, 60);

118: );
119: end;
120: --
121: if g_debug then
122: hr_utility.set_location(l_proc, 60);
123: end if;
124: --
125: --
126: -- When in validation only mode raise the Validate_Enabled exception

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

129: raise hr_api.validate_enabled;
130: end if;
131: --
132: --if g_debug then
133: --hr_utility.set_location(' Leaving:'||l_proc, 70);
134: --end if;
135: --
136: --
137: -- Set all output arguments

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

139: p_deposit_process_id := l_deposit_process_id;
140: p_object_version_number := l_object_version_number;
141: --
142: if g_debug then
143: hr_utility.set_location(' Leaving:'||l_proc, 70);
144: end if;
145: exception
146: when hr_api.validate_enabled then
147: --

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

156: --
157: p_deposit_process_id := null;
158: p_object_version_number := null;
159: if g_debug then
160: hr_utility.set_location(' Leaving:'||l_proc, 80);
161: end if;
162: when others then
163: --
164: -- A validation or unexpected error has occured

Line 168: hr_utility.set_location(' Leaving:'||l_proc, 90);

164: -- A validation or unexpected error has occured
165: --
166: rollback to create_deposit_processes;
167: if g_debug then
168: hr_utility.set_location(' Leaving:'||l_proc, 90);
169: end if;
170: raise;
171: --
172: end create_deposit_processes;

Line 196: g_debug:=hr_utility.debug_enabled;

192: l_object_version_number hxc_deposit_processes.object_version_number%TYPE := p_object_version_number;
193: --
194: Begin
195: --
196: g_debug:=hr_utility.debug_enabled;
197: if g_debug then
198: l_proc := g_package||' update_deposit_processes';
199: hr_utility.set_location('Entering:'|| l_proc, 10);
200: end if;

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

195: --
196: g_debug:=hr_utility.debug_enabled;
197: if g_debug then
198: l_proc := g_package||' update_deposit_processes';
199: hr_utility.set_location('Entering:'|| l_proc, 10);
200: end if;
201: --
202: -- Issue a savepoint if operating in validation only mode
203: --

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

203: --
204: savepoint update_deposit_processes;
205: --
206: if g_debug then
207: hr_utility.set_location(l_proc, 20);
208: end if;
209: --
210: -- Call Before Process User Hook
211: --

Line 230: --hr_utility.set_location(l_proc, 30);

226: );
227: end;
228: --
229: --if g_debug then
230: --hr_utility.set_location(l_proc, 30);
231: --end if;
232: --
233: -- Process Logic
234: --

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

243: ,p_mapping_id => p_mapping_id
244: );
245: --
246: if g_debug then
247: hr_utility.set_location(l_proc, 40);
248: end if;
249: --
250: -- Call After Process User Hook
251: --

Line 270: hr_utility.set_location(l_proc, 50);

266: );
267: end;
268: --
269: if g_debug then
270: hr_utility.set_location(l_proc, 50);
271: end if;
272: --
273: -- When in validation only mode raise the Validate_Enabled exception
274: --

Line 280: hr_utility.set_location(' Leaving:'||l_proc, 60);

276: raise hr_api.validate_enabled;
277: end if;
278: --
279: if g_debug then
280: hr_utility.set_location(' Leaving:'||l_proc, 60);
281: end if;
282: --
283: -- Set all output arguments
284: --

Line 304: hr_utility.set_location(' Leaving:'||l_proc, 60);

300: --
301: p_object_version_number := null;
302: --
303: if g_debug then
304: hr_utility.set_location(' Leaving:'||l_proc, 60);
305: end if;
306: --
307: when others then
308: --

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

309: -- A validation or unexpected error has occured
310: --
311: ROLLBACK TO update_deposit_processes;
312: if g_debug then
313: hr_utility.set_location(' Leaving:'||l_proc, 70);
314: end if;
315: raise;
316: --
317: END update_deposit_processes;

Line 335: g_debug:=hr_utility.debug_enabled;

331: l_proc varchar2(72);
332: --
333: begin
334: --
335: g_debug:=hr_utility.debug_enabled;
336: if g_debug then
337: l_proc := g_package||'delete_deposit_processes';
338: hr_utility.set_location('Entering:'|| l_proc, 10);
339: end if;

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

334: --
335: g_debug:=hr_utility.debug_enabled;
336: if g_debug then
337: l_proc := g_package||'delete_deposit_processes';
338: hr_utility.set_location('Entering:'|| l_proc, 10);
339: end if;
340: --
341: -- Issue a savepoint if operating in validation only mode
342: --

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

342: --
343: savepoint delete_deposit_processes;
344: --
345: if g_debug then
346: hr_utility.set_location(l_proc, 20);
347: end if;
348: --
349: -- Call Before Process User Hook
350: --

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

362: );
363: end;
364: --
365: if g_debug then
366: hr_utility.set_location(l_proc, 30);
367: end if;
368: --
369: -- Process Logic
370: --

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

374: ,p_object_version_number => p_object_version_number
375: );
376: --
377: if g_debug then
378: hr_utility.set_location(l_proc, 40);
379: end if;
380: --
381: -- Call After Process User Hook
382: --

Line 404: hr_utility.set_location(' Leaving:'||l_proc, 50);

400: raise hr_api.validate_enabled;
401: end if;
402: --
403: if g_debug then
404: hr_utility.set_location(' Leaving:'||l_proc, 50);
405: end if;
406: --
407: exception
408: --