DBA Data[Home] [Help]

APPS.HXT_RETRO_VAL dependencies on HR_UTILITY

Line 5: g_debug boolean := hr_utility.debug_enabled;

1: PACKAGE BODY hxt_retro_val AS
2: /* $Header: hxtrval.pkb 120.4 2007/01/05 18:24:05 nissharm noship $ */
3: -- Global package name
4: g_package CONSTANT VARCHAR2 (33) := 'hxt_retro_val.';
5: g_debug boolean := hr_utility.debug_enabled;
6: -- ancient relic that we need to remove later and place in hxt_batch_process,
7: -- the only code that calss this thing.
8: PROCEDURE mark_rows_complete (p_batch_id IN NUMBER)
9: IS

Line 72: g_debug :=hr_utility.debug_enabled;

68: WHERE htx.id = p_tim_id;
69:
70: rec_additional_info csr_additional_info%ROWTYPE;
71: BEGIN
72: g_debug :=hr_utility.debug_enabled;
73: if g_debug then
74: l_proc := g_package
75: || 'val_retro_timecard';
76: hr_utility.set_location ( 'Entering:'

Line 76: hr_utility.set_location ( 'Entering:'

72: g_debug :=hr_utility.debug_enabled;
73: if g_debug then
74: l_proc := g_package
75: || 'val_retro_timecard';
76: hr_utility.set_location ( 'Entering:'
77: || l_proc, 10);
78: end if;
79: hxt_batch_val.reset_error_level;
80: hxt_batch_val.delete_prev_val_errors (p_tim_id => p_tim_id);

Line 104: hr_utility.trace('Populating merge_batches record'||' batch_id: '||p_batch_id||' tc_id '||p_tim_id);

100: /*** To record the validated timecards details ***/
101:
102: IF p_merge_flag = '1' THEN
103: if g_debug then
104: hr_utility.trace('Populating merge_batches record'||' batch_id: '||p_batch_id||' tc_id '||p_tim_id);
105: end if;
106: l_cnt := NVL(p_merge_batches.LAST,0) +1;
107:
108: p_merge_batches(l_cnt).batch_id := p_batch_id;

Line 118: hr_utility.set_location ( 'Leaving:'

114: /********Bug: 4620315 **********/
115:
116: CLOSE csr_additional_info;
117: if g_debug then
118: hr_utility.set_location ( 'Leaving:'
119: || l_proc, 100);
120: end if;
121: END val_retro_timecard;
122: END hxt_retro_val;