DBA Data[Home] [Help]

APPS.PAY_SE_HCIA_ARCHIVE dependencies on HR_UTILITY

Line 3: g_debug BOOLEAN := hr_utility.debug_enabled;

1: PACKAGE BODY pay_se_hcia_archive AS
2: /* $Header: pysehcia.pkb 120.0.12000000.1 2007/07/18 10:57:48 psingla noship $ */
3: g_debug BOOLEAN := hr_utility.debug_enabled;
4: g_package VARCHAR2 (33) := 'PAY_SE_HCIA_ARCHIVE.';
5: g_payroll_action_id NUMBER;
6: -- Globals to pick up all the parameter
7: g_business_group_id NUMBER;

Line 30: hr_utility.set_location (' Entering Function GET_PARAMETER', 10);

26: l_proc VARCHAR2 (40) := g_package || ' get parameter ';
27: BEGIN
28: --
29: IF g_debug THEN
30: hr_utility.set_location (' Entering Function GET_PARAMETER', 10);
31: END IF;
32:
33: l_start_pos := instr (' ' || p_parameter_string, l_delimiter || p_token || '=');
34:

Line 62: hr_utility.set_location (' Leaving Function GET_PARAMETER', 20);

58: END IF;
59:
60: --
61: IF g_debug THEN
62: hr_utility.set_location (' Leaving Function GET_PARAMETER', 20);
63: END IF;
64:
65: RETURN l_parameter;
66: END;

Line 121: hr_utility.set_location (' Leaving Procedure GET_ALL_PARAMETERS', 30);

117: p_effective_date := lr_parameter_info.effective_date;
118: p_business_group_id := lr_parameter_info.bg_id;
119:
120: IF g_debug THEN
121: hr_utility.set_location (' Leaving Procedure GET_ALL_PARAMETERS', 30);
122: END IF;
123: END get_all_parameters;
124: /* RANGE CODE */
125: PROCEDURE range_code (

Line 227: hr_utility.set_location (' Entering Procedure RANGE_CODE', 40);

223:
224: g_debug := TRUE ;
225:
226: IF g_debug THEN
227: hr_utility.set_location (' Entering Procedure RANGE_CODE', 40);
228: END IF;
229:
230: p_sql :=
231: 'SELECT DISTINCT person_id

Line 402: hr_utility.set_location (' Leaving Procedure RANGE_CODE', 50);

398: END LOOP;
399: END IF; -- FOR G_LEGAL_EMPLOYER
400: --END IF; -- G_Archive End
401: IF g_debug THEN
402: hr_utility.set_location (' Leaving Procedure RANGE_CODE', 50);
403: END IF;
404: EXCEPTION
405: WHEN OTHERS THEN
406: -- Return cursor that selects no rows

Line 418: hr_utility.set_location (' Entering Procedure ASSIGNMENT_ACTION_CODE', 60);

414: p_chunk IN NUMBER
415: ) IS
416: BEGIN
417: IF g_debug THEN
418: hr_utility.set_location (' Entering Procedure ASSIGNMENT_ACTION_CODE', 60);
419: END IF;
420: END assignment_action_code;
421: /* INITIALIZATION CODE */
422: PROCEDURE initialization_code (

Line 427: hr_utility.set_location (' Entering Procedure INITIALIZATION_CODE', 80);

423: p_payroll_action_id IN NUMBER
424: ) IS
425: BEGIN
426: IF g_debug THEN
427: hr_utility.set_location (' Entering Procedure INITIALIZATION_CODE', 80);
428: END IF;
429: END initialization_code;
430: /* ARCHIVE CODE */
431: PROCEDURE archive_code (

Line 437: hr_utility.set_location (' Entering Procedure ARCHIVE_CODE', 380);

433: p_effective_date IN DATE
434: ) IS
435: BEGIN
436: IF g_debug THEN
437: hr_utility.set_location (' Entering Procedure ARCHIVE_CODE', 380);
438: END IF;
439: END archive_code;
440: END pay_se_hcia_archive;