DBA Data[Home] [Help]

APPS.HXC_SELF_SERVICE_TIME_DEPOSIT dependencies on HR_UTILITY

Line 4: g_debug boolean := hr_utility.debug_enabled;

1: PACKAGE BODY hxc_self_service_time_deposit AS
2: /* $Header: hxctcdpwr.pkb 120.6 2006/03/23 23:20:44 sgadipal noship $ */
3:
4: g_debug boolean := hr_utility.debug_enabled;
5: --AI7
6: TYPE t_mapping_comp IS RECORD
7: (segment hxc_mapping_components.segment%TYPE,
8: field_name hxc_mapping_components.field_name%TYPE,

Line 2945: hr_utility.trace('Same Attribute found');

2941: and attribute_category = g_attributes(p_attribute_number).attribute_category;
2942: g_attributes(p_attribute_number).changed := 'N';
2943: if g_debug then
2944: l_proc := 'UpdateAttributeRecord';
2945: hr_utility.trace('Same Attribute found');
2946: end if;
2947: exception
2948: when no_data_found then
2949: g_attributes(p_attribute_number).changed := 'Y';

Line 2951: hr_utility.trace('Same Attribute NOT found');

2947: exception
2948: when no_data_found then
2949: g_attributes(p_attribute_number).changed := 'Y';
2950: if g_debug then
2951: hr_utility.trace('Same Attribute NOT found');
2952: end if;
2953: end;
2954: END IF;
2955: END update_attribute_record;

Line 3019: hr_utility.trace('Before API Check');

3015: l_attribute_category := p_app_attributes(p_app_attribute_count).bld_blk_info_type;
3016: END IF;
3017:
3018: if g_debug then
3019: hr_utility.trace('Before API Check');
3020: end if;
3021: -- check if this code was called from the Timestore Deposit API
3022: if p_app_attributes(p_app_attribute_count).changed is null then
3023: if g_debug then

Line 3024: hr_utility.trace('API Call');

3020: end if;
3021: -- check if this code was called from the Timestore Deposit API
3022: if p_app_attributes(p_app_attribute_count).changed is null then
3023: if g_debug then
3024: hr_utility.trace('API Call');
3025: end if;
3026: -- Determine if this is a new attribute or an existing one
3027: open csr_attribute
3028: ( p_app_attributes(p_app_attribute_count).time_attribute_id

Line 3034: hr_utility.trace('attribute found');

3030:
3031: fetch csr_attribute into l_attribute_row;
3032: if(csr_attribute%FOUND) then
3033: if g_debug then
3034: hr_utility.trace('attribute found');
3035: end if;
3036: l_new := 'N';
3037: l_changed := NULL;
3038: else

Line 3040: hr_utility.trace('attribute NOT found');

3036: l_new := 'N';
3037: l_changed := NULL;
3038: else
3039: if g_debug then
3040: hr_utility.trace('attribute NOT found');
3041: end if;
3042: l_new := 'Y';
3043: l_changed := 'Y';
3044: end if;

Line 5724: hr_utility.set_message (809, 'HXC_APR_NO_TIMECARD_INFO');

5720:
5721: IF p_timecard_blocks.COUNT = 0
5722: THEN
5723: --
5724: hr_utility.set_message (809, 'HXC_APR_NO_TIMECARD_INFO');
5725: hr_utility.raise_error;
5726: END IF;
5727: END get_timecard_tables;
5728:

Line 5725: hr_utility.raise_error;

5721: IF p_timecard_blocks.COUNT = 0
5722: THEN
5723: --
5724: hr_utility.set_message (809, 'HXC_APR_NO_TIMECARD_INFO');
5725: hr_utility.raise_error;
5726: END IF;
5727: END get_timecard_tables;
5728:
5729: