DBA Data[Home] [Help]

APPS.HR_TIC_BUS dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'set_security_group_id';
25: --
26: begin
27: --
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- No business group context. Security group is not applicable.
31: --
32: null;

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

30: -- No business group context. Security group is not applicable.
31: --
32: null;
33: --
34: hr_utility.set_location(' Leaving:'|| l_proc, 20);
35: --
36: end set_security_group_id;
37: --
38: -- ---------------------------------------------------------------------------

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

61: l_proc varchar2(72) := g_package||'return_legislation_code';
62: --
63: Begin
64: --
65: hr_utility.set_location('Entering:'|| l_proc, 10);
66: --
67: -- Ensure that all the mandatory parameter are not null
68: --
69: hr_api.mandatory_arg_error

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

79: -- call to this function. Just return the value in the global
80: -- variable.
81: --
82: l_legislation_code := hr_tic_bus.g_legislation_code;
83: hr_utility.set_location(l_proc, 20);
84: else
85: --
86: -- The ID is different to the last call to this function
87: -- or this is the first call to this function.

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

96: close csr_leg_code;
97: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
98: fnd_message.raise_error;
99: end if;
100: hr_utility.set_location(l_proc,30);
101: --
102: -- Set the global variables so the values are
103: -- available for the next call to this function.
104: --

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

105: close csr_leg_code;
106: hr_tic_bus.g_template_item_context_id := p_template_item_context_id;
107: hr_tic_bus.g_legislation_code := l_legislation_code;
108: end if;
109: hr_utility.set_location(' Leaving:'|| l_proc, 40);
110: return l_legislation_code;
111: end return_legislation_code;
112: --
113: -- ----------------------------------------------------------------------------

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

202: l_proc varchar2(72) := g_package || 'chk_template_item_id';
203: l_api_updating boolean;
204: --
205: Begin
206: hr_utility.set_location('Entering:'||l_proc, 10);
207: --
208: -- Check value has been passed
209: --
210: hr_api.mandatory_arg_error

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

212: ,p_argument => 'template_item_id'
213: ,p_argument_value => p_template_item_id
214: );
215: --
216: hr_utility.set_location('Leaving:'||l_proc, 100);
217: End chk_template_item_id;
218: --
219: -- ----------------------------------------------------------------------------
220: -- |-------------------------< chk_context_type >-------------------------|

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

228: l_proc varchar2(72) := g_package || 'chk_context_type';
229: l_api_updating boolean;
230: --
231: Begin
232: hr_utility.set_location('Entering:'||l_proc, 10);
233: --
234: -- Check value has been passed
235: --
236: hr_api.mandatory_arg_error

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

238: ,p_argument => 'context_type'
239: ,p_argument_value => p_context_type
240: );
241: --
242: hr_utility.set_location('Leaving:'||l_proc, 100);
243: End chk_context_type;
244: --
245: -- ----------------------------------------------------------------------------
246: -- |-------------------------< chk_item_context_id >-------------------------|

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

254: l_proc varchar2(72) := g_package || 'chk_item_context_id';
255: l_api_updating boolean;
256: --
257: Begin
258: hr_utility.set_location('Entering:'||l_proc, 10);
259: --
260: -- Check value has been passed
261: --
262: hr_api.mandatory_arg_error

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

264: ,p_argument => 'item_context_id'
265: ,p_argument_value => p_item_context_id
266: );
267: --
268: hr_utility.set_location('Leaving:'||l_proc, 100);
269: End chk_item_context_id;
270: --
271: -- ----------------------------------------------------------------------------
272: -- |---------------------------< chk_item_and_context >-----------------------|

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

315: l_proc varchar2(71) := g_package || 'chk_item_and_context';
316: l_api_updating boolean;
317: --
318: Begin
319: hr_utility.set_location('Entering:'||l_proc, 10);
320: --
321: -- Retrieve context for specific item context
322: --
323: OPEN csr_item_contexts

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

325: );
326: FETCH csr_item_contexts INTO l_item_context;
327: CLOSE csr_item_contexts;
328: --
329: hr_utility.set_location(l_proc, 20);
330: --
331: -- Compare with contexts already defined for the same item
332: --
333: FOR l_template_item_context IN csr_template_item_contexts

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

349: END IF;
350: END IF;
351: END LOOP;
352: --
353: hr_utility.set_location('Leaving:'||l_proc, 100);
354: End chk_item_and_context;
355: --
356: -- ----------------------------------------------------------------------------
357: -- |------------------------------< chk_delete >------------------------------|

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

362: --
363: l_proc varchar2(72) := g_package||'chk_delete';
364: --
365: Begin
366: hr_utility.set_location('Entering:'||l_proc, 5);
367: --
368: -- No additional validation required
369: --
370: null;

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

368: -- No additional validation required
369: --
370: null;
371: --
372: hr_utility.set_location(' Leaving:'||l_proc, 10);
373: End chk_delete;
374: --
375: -- ----------------------------------------------------------------------------
376: -- |---------------------------< insert_validate >----------------------------|

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

381: --
382: l_proc varchar2(72) := g_package||'insert_validate';
383: --
384: Begin
385: hr_utility.set_location('Entering:'||l_proc, 5);
386: --
387: -- Call all supporting business operations
388: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
389: --

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

411: ,p_item_context_id => p_rec.item_context_id
412: ,p_template_item_id => p_rec.template_item_id
413: );
414: --
415: hr_utility.set_location(' Leaving:'||l_proc, 10);
416: End insert_validate;
417: --
418: -- ----------------------------------------------------------------------------
419: -- |---------------------------< update_validate >----------------------------|

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

424: --
425: l_proc varchar2(72) := g_package||'update_validate';
426: --
427: Begin
428: hr_utility.set_location('Entering:'||l_proc, 5);
429: --
430: -- Call all supporting business operations
431: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
432: --

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

458: ,p_item_context_id => p_rec.item_context_id
459: ,p_template_item_id => p_rec.template_item_id
460: );
461: --
462: hr_utility.set_location(' Leaving:'||l_proc, 10);
463: End update_validate;
464: --
465: -- ----------------------------------------------------------------------------
466: -- |---------------------------< delete_validate >----------------------------|

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

471: --
472: l_proc varchar2(72) := g_package||'delete_validate';
473: --
474: Begin
475: hr_utility.set_location('Entering:'||l_proc, 5);
476: --
477: -- Call all supporting business operations
478: --
479: chk_delete

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

479: chk_delete
480: (p_rec => p_rec
481: );
482: --
483: hr_utility.set_location(' Leaving:'||l_proc, 10);
484: End delete_validate;
485: --
486: end hr_tic_bus;