DBA Data[Home] [Help]

APPS.HXC_RTC_BUS dependencies on HR_UTILITY

Line 10: g_debug boolean := hr_utility.debug_enabled;

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

Line 47: g_debug := hr_utility.debug_enabled;

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

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

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

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

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

Line 120: g_debug := hr_utility.debug_enabled;

116: l_legislation_code varchar2(150);
117: l_proc varchar2(72);
118: --
119: Begin
120: g_debug := hr_utility.debug_enabled;
121:
122: --
123: if g_debug then
124: l_proc := g_package||'return_legislation_code';

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

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

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

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

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

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

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

171: hxc_rtc_bus.g_retrieval_rule_comp_id:= p_retrieval_rule_comp_id;
172: hxc_rtc_bus.g_legislation_code := l_legislation_code;
173: end if;
174: if g_debug then
175: hr_utility.set_location(' Leaving:'|| l_proc, 40);
176: end if;
177: return l_legislation_code;
178: end return_legislation_code;
179: --

Line 292: g_debug := hr_utility.debug_enabled;

288: --
289: l_error varchar2(5) := NULL;
290: --
291: BEGIN
292: g_debug := hr_utility.debug_enabled;
293:
294: if g_debug then
295: l_proc := g_package||'chk_application';
296: hr_utility.set_location('Entering:'||l_proc, 5);

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

292: g_debug := hr_utility.debug_enabled;
293:
294: if g_debug then
295: l_proc := g_package||'chk_application';
296: hr_utility.set_location('Entering:'||l_proc, 5);
297: end if;
298: --
299: -- Raise an error if the rule is not unique
300: --

Line 308: hr_utility.set_message(809, 'HXC_0088_RTC_APL_RULE_EXISTS');

304: --
305: IF l_error IS NOT NULL
306: THEN
307: --
308: hr_utility.set_message(809, 'HXC_0088_RTC_APL_RULE_EXISTS');
309: hr_utility.raise_error;
310: --
311: END IF;
312: --

Line 309: hr_utility.raise_error;

305: IF l_error IS NOT NULL
306: THEN
307: --
308: hr_utility.set_message(809, 'HXC_0088_RTC_APL_RULE_EXISTS');
309: hr_utility.raise_error;
310: --
311: END IF;
312: --
313: if g_debug then

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

310: --
311: END IF;
312: --
313: if g_debug then
314: hr_utility.set_location('Leaving:'||l_proc, 10);
315: end if;
316: --
317: END chk_application;
318: --

Line 330: g_debug := hr_utility.debug_enabled;

326: --
327: l_proc varchar2(72);
328: --
329: Begin
330: g_debug := hr_utility.debug_enabled;
331:
332: if g_debug then
333: l_proc := g_package||'insert_validate';
334: hr_utility.set_location('Entering:'||l_proc, 5);

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

330: g_debug := hr_utility.debug_enabled;
331:
332: if g_debug then
333: l_proc := g_package||'insert_validate';
334: hr_utility.set_location('Entering:'||l_proc, 5);
335: --
336: -- Call all supporting business operations
337: --
338: hr_utility.set_location('Processing:'||l_proc, 10);

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

334: hr_utility.set_location('Entering:'||l_proc, 5);
335: --
336: -- Call all supporting business operations
337: --
338: hr_utility.set_location('Processing:'||l_proc, 10);
339: end if;
340: --
341: chk_application ( p_retrieval_rule_id => p_rec.retrieval_rule_id,
342: p_time_recipient_id => p_rec.time_recipient_id,

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

342: p_time_recipient_id => p_rec.time_recipient_id,
343: p_object_version_number => p_rec.object_version_number );
344: --
345: if g_debug then
346: hr_utility.set_location(' Leaving:'||l_proc, 10);
347: end if;
348: --
349: -- EDIT_HERE: As this table does not have a mandatory business_group_id
350: -- column, ensure client_info is populated by calling a suitable

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

354: -- "-- CLIENT_INFO not set. No lookup validation or joins to HR_LOOKUPS."
355: --
356: --
357: if g_debug then
358: hr_utility.set_location(' Leaving:'||l_proc, 10);
359: end if;
360: End insert_validate;
361: --
362: -- ----------------------------------------------------------------------------

Line 373: g_debug := hr_utility.debug_enabled;

369: --
370: l_proc varchar2(72);
371: --
372: Begin
373: g_debug := hr_utility.debug_enabled;
374:
375: if g_debug then
376: l_proc := g_package||'update_validate';
377: hr_utility.set_location('Entering:'||l_proc, 5);

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

373: g_debug := hr_utility.debug_enabled;
374:
375: if g_debug then
376: l_proc := g_package||'update_validate';
377: hr_utility.set_location('Entering:'||l_proc, 5);
378: --
379: -- Call all supporting business operations
380: --
381: hr_utility.set_location('Processing:'||l_proc, 10);

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

377: hr_utility.set_location('Entering:'||l_proc, 5);
378: --
379: -- Call all supporting business operations
380: --
381: hr_utility.set_location('Processing:'||l_proc, 10);
382: end if;
383: --
384: chk_application ( p_retrieval_rule_id => p_rec.retrieval_rule_id,
385: p_time_recipient_id => p_rec.time_recipient_id,

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

385: p_time_recipient_id => p_rec.time_recipient_id,
386: p_object_version_number => p_rec.object_version_number );
387: --
388: if g_debug then
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: end if;
391: --
392: -- EDIT_HERE: As this table does not have a mandatory business_group_id
393: -- column, ensure client_info is populated by calling a suitable

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

402: );
403: --
404: --
405: if g_debug then
406: hr_utility.set_location(' Leaving:'||l_proc, 10);
407: end if;
408: End update_validate;
409: --
410: -- ----------------------------------------------------------------------------

Line 420: g_debug := hr_utility.debug_enabled;

416: --
417: l_proc varchar2(72);
418: --
419: Begin
420: g_debug := hr_utility.debug_enabled;
421:
422: if g_debug then
423: l_proc := g_package||'delete_validate';
424: hr_utility.set_location('Entering:'||l_proc, 5);

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

420: g_debug := hr_utility.debug_enabled;
421:
422: if g_debug then
423: l_proc := g_package||'delete_validate';
424: hr_utility.set_location('Entering:'||l_proc, 5);
425: --
426: -- Call all supporting business operations
427: --
428: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

424: hr_utility.set_location('Entering:'||l_proc, 5);
425: --
426: -- Call all supporting business operations
427: --
428: hr_utility.set_location(' Leaving:'||l_proc, 10);
429: end if;
430: End delete_validate;
431: --
432: end hxc_rtc_bus;