DBA Data[Home] [Help]

APPS.HXC_HDP_BUS dependencies on HR_UTILITY

Line 9: g_debug boolean:=hr_utility.debug_enabled;

5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hxc_hdp_bus.'; -- Global package name
9: g_debug boolean:=hr_utility.debug_enabled;
10: --
11: -- The following two global variables are only to be
12: -- used by the return_legislation_code function.
13: --

Line 47: g_debug:=hr_utility.debug_enabled;

43: l_proc varchar2(72);
44: --
45: begin
46: --
47: g_debug:=hr_utility.debug_enabled;
48: if g_debug then
49: l_proc := g_package||'set_security_group_id';
50: hr_utility.set_location('Entering:'|| l_proc, 10);
51: end if;

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

46: --
47: g_debug:=hr_utility.debug_enabled;
48: if g_debug then
49: l_proc := g_package||'set_security_group_id';
50: hr_utility.set_location('Entering:'|| l_proc, 10);
51: end if;
52: --
53: -- Ensure that all the mandatory parameter are not null
54: --

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

79: (p_security_group_id => l_security_group_id
80: );
81: --
82: if g_debug then
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: end if;
85: --
86: end set_security_group_id;
87: --

Line 119: g_debug:=hr_utility.debug_enabled;

115: l_proc varchar2(72);
116: --
117: Begin
118: --
119: g_debug:=hr_utility.debug_enabled;
120: if g_debug then
121: l_proc := g_package||'return_legislation_code';
122: hr_utility.set_location('Entering:'|| l_proc, 10);
123: end if;

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

118: --
119: g_debug:=hr_utility.debug_enabled;
120: if g_debug then
121: l_proc := g_package||'return_legislation_code';
122: hr_utility.set_location('Entering:'|| l_proc, 10);
123: end if;
124: --
125: -- Ensure that all the mandatory parameter are not null
126: --

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

138: -- variable.
139: --
140: l_legislation_code := hxc_hdp_bus.g_legislation_code;
141: if g_debug then
142: hr_utility.set_location(l_proc, 20);
143: end if;
144: else
145: --
146: -- The ID is different to the last call to this function

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

157: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
158: fnd_message.raise_error;
159: end if;
160: if g_debug then
161: hr_utility.set_location(l_proc,30);
162: end if;
163: --
164: -- Set the global variables so the values are
165: -- available for the next call to this function.

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

168: hxc_hdp_bus.g_deposit_process_id:= p_deposit_process_id;
169: hxc_hdp_bus.g_legislation_code := l_legislation_code;
170: end if;
171: if g_debug then
172: hr_utility.set_location(' Leaving:'|| l_proc, 40);
173: end if;
174: return l_legislation_code;
175: end return_legislation_code;
176: --

Line 286: g_debug:=hr_utility.debug_enabled;

282: --
283: l_error varchar2(5) := NULL;
284: --
285: BEGIN
286: g_debug:=hr_utility.debug_enabled;
287: if g_debug then
288: l_proc := g_package||'chk_name';
289: hr_utility.set_location('Entering:'||l_proc, 5);
290: end if;

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

285: BEGIN
286: g_debug:=hr_utility.debug_enabled;
287: if g_debug then
288: l_proc := g_package||'chk_name';
289: hr_utility.set_location('Entering:'||l_proc, 5);
290: end if;
291: --
292: -- Raise error if name is NULL as it is a mandatory field.
293: --

Line 297: hr_utility.set_message(809, 'HXC_0075_HDP_DPROC_NAME_MAND');

293: --
294: IF p_name IS NULL
295: THEN
296: --
297: hr_utility.set_message(809, 'HXC_0075_HDP_DPROC_NAME_MAND');
298: hr_utility.raise_error;
299: --
300: END IF;
301: if g_debug then

Line 298: hr_utility.raise_error;

294: IF p_name IS NULL
295: THEN
296: --
297: hr_utility.set_message(809, 'HXC_0075_HDP_DPROC_NAME_MAND');
298: hr_utility.raise_error;
299: --
300: END IF;
301: if g_debug then
302: hr_utility.set_location('Processing:'||l_proc, 10);

Line 302: hr_utility.set_location('Processing:'||l_proc, 10);

298: hr_utility.raise_error;
299: --
300: END IF;
301: if g_debug then
302: hr_utility.set_location('Processing:'||l_proc, 10);
303: end if;
304: --
305: -- Raise an error if the Deposit process name is not unique
306: --

Line 314: hr_utility.set_message(809, 'HXC_0076_HDP_DUP_DPROCESS_NAME');

310: --
311: IF l_error IS NOT NULL
312: THEN
313: --
314: hr_utility.set_message(809, 'HXC_0076_HDP_DUP_DPROCESS_NAME');
315: hr_utility.raise_error;
316: --
317: END IF;
318: --

Line 315: hr_utility.raise_error;

311: IF l_error IS NOT NULL
312: THEN
313: --
314: hr_utility.set_message(809, 'HXC_0076_HDP_DUP_DPROCESS_NAME');
315: hr_utility.raise_error;
316: --
317: END IF;
318: --
319: if g_debug then

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

316: --
317: END IF;
318: --
319: if g_debug then
320: hr_utility.set_location('Leaving:'||l_proc, 20);
321: end if;
322: --
323: END chk_name;
324: --

Line 336: g_debug:=hr_utility.debug_enabled;

332: --
333: l_proc varchar2(72);
334: --
335: Begin
336: g_debug:=hr_utility.debug_enabled;
337: if g_debug then
338: hr_utility.set_location('Entering:'||l_proc, 5);
339: end if;
340: --

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

334: --
335: Begin
336: g_debug:=hr_utility.debug_enabled;
337: if g_debug then
338: hr_utility.set_location('Entering:'||l_proc, 5);
339: end if;
340: --
341: -- Call all supporting business operations
342: --

Line 345: hr_utility.set_location('Processing:'||l_proc, 10);

341: -- Call all supporting business operations
342: --
343: if g_debug then
344: l_proc := g_package||'insert_validate';
345: hr_utility.set_location('Processing:'||l_proc, 10);
346: end if;
347: --
348: chk_name ( p_name => p_rec.name,
349: p_object_version_number => p_rec.object_version_number );

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

348: chk_name ( p_name => p_rec.name,
349: p_object_version_number => p_rec.object_version_number );
350: --
351: if g_debug then
352: hr_utility.set_location(' Leaving:'||l_proc, 10);
353: end if;
354: --
355: -- EDIT_HERE: As this table does not have a mandatory business_group_id
356: -- column, ensure client_info is populated by calling a suitable

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

360: -- "-- CLIENT_INFO not set. No lookup validation or joins to HR_LOOKUPS."
361: --
362: --
363: if g_debug then
364: hr_utility.set_location(' Leaving:'||l_proc, 10);
365: end if;
366: End insert_validate;
367: --
368: -- ----------------------------------------------------------------------------

Line 379: g_debug:=hr_utility.debug_enabled;

375: --
376: l_proc varchar2(72);
377: --
378: Begin
379: g_debug:=hr_utility.debug_enabled;
380: if g_debug then
381: l_proc := g_package||'update_validate';
382: hr_utility.set_location('Entering:'||l_proc, 5);
383: end if;

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

378: Begin
379: g_debug:=hr_utility.debug_enabled;
380: if g_debug then
381: l_proc := g_package||'update_validate';
382: hr_utility.set_location('Entering:'||l_proc, 5);
383: end if;
384: --
385: -- Call all supporting business operations
386: --

Line 388: hr_utility.set_location('Processing:'||l_proc, 10);

384: --
385: -- Call all supporting business operations
386: --
387: if g_debug then
388: hr_utility.set_location('Processing:'||l_proc, 10);
389: end if;
390: --
391: chk_name ( p_name => p_rec.name,
392: p_object_version_number => p_rec.object_version_number );

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

391: chk_name ( p_name => p_rec.name,
392: p_object_version_number => p_rec.object_version_number );
393: --
394: if g_debug then
395: hr_utility.set_location(' Leaving:'||l_proc, 10);
396: end if;
397: --
398: -- EDIT_HERE: As this table does not have a mandatory business_group_id
399: -- column, ensure client_info is populated by calling a suitable

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

408: );
409: --
410: --
411: if g_debug then
412: hr_utility.set_location(' Leaving:'||l_proc, 10);
413: end if;
414: End update_validate;
415: --
416: -- ----------------------------------------------------------------------------

Line 426: g_debug:=hr_utility.debug_enabled;

422: --
423: l_proc varchar2(72);
424: --
425: Begin
426: g_debug:=hr_utility.debug_enabled;
427: if g_debug then
428: l_proc := g_package||'delete_validate';
429: hr_utility.set_location('Entering:'||l_proc, 5);
430: end if;

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

425: Begin
426: g_debug:=hr_utility.debug_enabled;
427: if g_debug then
428: l_proc := g_package||'delete_validate';
429: hr_utility.set_location('Entering:'||l_proc, 5);
430: end if;
431: --
432: -- Call all supporting business operations
433: --

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

431: --
432: -- Call all supporting business operations
433: --
434: if g_debug then
435: hr_utility.set_location(' Leaving:'||l_proc, 10);
436: end if;
437: End delete_validate;
438: --
439: end hxc_hdp_bus;