DBA Data[Home] [Help]

APPS.HXC_ATC_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_atc_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 41: g_debug :=hr_utility.debug_enabled;

37: l_proc varchar2(72);
38: --
39: begin
40: --
41: g_debug :=hr_utility.debug_enabled;
42: if g_debug then
43: l_proc := g_package||'set_security_group_id';
44: hr_utility.set_location('Entering:'|| l_proc, 10);
45: end if;

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

40: --
41: g_debug :=hr_utility.debug_enabled;
42: if g_debug then
43: l_proc := g_package||'set_security_group_id';
44: hr_utility.set_location('Entering:'|| l_proc, 10);
45: end if;
46: --
47: -- Ensure that all the mandatory parameter are not null
48: --

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

77: );
78: end if;
79: --
80: if g_debug then
81: hr_utility.set_location(' Leaving:'|| l_proc, 20);
82: end if;
83: --
84: end set_security_group_id;
85: --

Line 110: g_debug:=hr_utility.debug_enabled;

106: l_proc varchar2(72);
107: --
108: Begin
109: --
110: g_debug:=hr_utility.debug_enabled;
111: if g_debug then
112: l_proc:= g_package||'return_legislation_code';
113: hr_utility.set_location('Entering:'|| l_proc, 10);
114: end if;

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

109: --
110: g_debug:=hr_utility.debug_enabled;
111: if g_debug then
112: l_proc:= g_package||'return_legislation_code';
113: hr_utility.set_location('Entering:'|| l_proc, 10);
114: end if;
115: --
116: -- Ensure that all the mandatory parameter are not null
117: --

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

129: -- variable.
130: --
131: l_legislation_code := hxc_atc_bus.g_legislation_code;
132: if g_debug then
133: hr_utility.set_location(l_proc, 20);
134: end if;
135: else
136: --
137: -- The ID is different to the last call to this function

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

148: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
149: fnd_message.raise_error;
150: end if;
151: if g_debug then
152: hr_utility.set_location(l_proc,30);
153: end if;
154: --
155: -- Set the global variables so the values are
156: -- available for the next call to this function.

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

159: hxc_atc_bus.g_alias_type_component_id := p_alias_type_component_id;
160: hxc_atc_bus.g_legislation_code := l_legislation_code;
161: end if;
162: if g_debug then
163: hr_utility.set_location(' Leaving:'|| l_proc, 40);
164: end if;
165: return l_legislation_code;
166: end return_legislation_code;
167: --

Line 239: hr_utility.trace('Entering chk_dup_atc');

235: l_error varchar2(5) := NULL;
236: begin
237:
238: if g_debug then
239: hr_utility.trace('Entering chk_dup_atc');
240: end if;
241: --
242: OPEN csr_chk_atc;
243: FETCH csr_chk_atc into l_error;

Line 250: hr_utility.set_message(809,'HXC_ALT_MAP_DUP');-- 'A mapping component can have only one component name associated with it');

246:
247: IF l_error IS NOT NULL
248: THEN
249: --
250: hr_utility.set_message(809,'HXC_ALT_MAP_DUP');-- 'A mapping component can have only one component name associated with it');
251: hr_utility.raise_error;
252: --
253: END IF;
254: l_error := '';

Line 251: hr_utility.raise_error;

247: IF l_error IS NOT NULL
248: THEN
249: --
250: hr_utility.set_message(809,'HXC_ALT_MAP_DUP');-- 'A mapping component can have only one component name associated with it');
251: hr_utility.raise_error;
252: --
253: END IF;
254: l_error := '';
255: if g_debug then

Line 256: hr_utility.trace('Leaving chk_dup_atc');

252: --
253: END IF;
254: l_error := '';
255: if g_debug then
256: hr_utility.trace('Leaving chk_dup_atc');
257: end if;
258:
259: end chk_dup_comb;
260:

Line 280: hr_utility.trace('Entering chk_dup_atc');

276: l_error varchar2(5) := NULL;
277: begin
278:
279: if g_debug then
280: hr_utility.trace('Entering chk_dup_atc');
281: end if;
282: --
283: OPEN csr_chk_atc;
284: FETCH csr_chk_atc into l_error;

Line 291: hr_utility.set_message(809,'HXC_ALT_MAP_DUP');-- 'A mapping component can have only one component name associated with it');

287:
288: IF l_error IS NOT NULL
289: THEN
290: --
291: hr_utility.set_message(809,'HXC_ALT_MAP_DUP');-- 'A mapping component can have only one component name associated with it');
292: hr_utility.raise_error;
293: --
294: END IF;
295: l_error := '';

Line 292: hr_utility.raise_error;

288: IF l_error IS NOT NULL
289: THEN
290: --
291: hr_utility.set_message(809,'HXC_ALT_MAP_DUP');-- 'A mapping component can have only one component name associated with it');
292: hr_utility.raise_error;
293: --
294: END IF;
295: l_error := '';
296: if g_debug then

Line 297: hr_utility.trace('Leaving chk_dup_atc');

293: --
294: END IF;
295: l_error := '';
296: if g_debug then
297: hr_utility.trace('Leaving chk_dup_atc');
298: end if;
299:
300: end chk_dup_comb_ins;
301: -- ----------------------------------------------------------------------------

Line 311: g_debug:=hr_utility.debug_enabled;

307: --
308: l_proc varchar2(72);
309: --
310: Begin
311: g_debug:=hr_utility.debug_enabled;
312: if g_debug then
313: l_proc := g_package||'insert_validate';
314: hr_utility.set_location('Entering:'||l_proc, 5);
315: end if;

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

310: Begin
311: g_debug:=hr_utility.debug_enabled;
312: if g_debug then
313: l_proc := g_package||'insert_validate';
314: hr_utility.set_location('Entering:'||l_proc, 5);
315: end if;
316: --
317: -- Call all supporting business operations
318: -- Validate Dependent Attributes

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

322: p_rec.alias_type_component_id,
323: p_rec.mapping_component_id
324: );
325: if g_debug then
326: hr_utility.set_location(' Leaving:'||l_proc, 10);
327: end if;
328: End insert_validate;
329: --
330: -- ----------------------------------------------------------------------------

Line 340: g_debug:=hr_utility.debug_enabled;

336: --
337: l_proc varchar2(72);
338: --
339: Begin
340: g_debug:=hr_utility.debug_enabled;
341: if g_debug then
342: l_proc:= g_package||'update_validate';
343: hr_utility.set_location('Entering:'||l_proc, 5);
344: end if;

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

339: Begin
340: g_debug:=hr_utility.debug_enabled;
341: if g_debug then
342: l_proc:= g_package||'update_validate';
343: hr_utility.set_location('Entering:'||l_proc, 5);
344: end if;
345: --
346: -- Call all supporting business operations
347: --

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

356: p_rec.alias_type_component_id,
357: p_rec.mapping_component_id
358: );
359: if g_debug then
360: hr_utility.set_location(' Leaving:'||l_proc, 10);
361: end if;
362: End update_validate;
363:
364: -------------------------------------------------------------------------------

Line 378: g_debug:=hr_utility.debug_enabled;

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

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

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

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

383: --
384: -- Call all supporting business operations
385: --
386: if g_debug then
387: hr_utility.set_location(' Leaving:'||l_proc, 10);
388: end if;
389: End delete_validate;
390: --
391: end hxc_atc_bus;