DBA Data[Home] [Help]

APPS.PER_AU_ASG_LEG_HOOK dependencies on HR_UTILITY

Line 46: g_debug := hr_utility.debug_enabled;

42: l_business_group_id NUMBER;
43: l_actions_exist VARCHAR2(3);
44: l_tax_unit_id hr_soft_coding_keyflex.segment1%type;
45: BEGIN
46: g_debug := hr_utility.debug_enabled;
47:
48: IF g_debug THEN
49: hr_utility.set_location('Start of PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',1);
50: END if;

Line 49: hr_utility.set_location('Start of PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',1);

45: BEGIN
46: g_debug := hr_utility.debug_enabled;
47:
48: IF g_debug THEN
49: hr_utility.set_location('Start of PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',1);
50: END if;
51:
52: OPEN c_tax_unit_id( p_assignment_id,p_effective_date);
53: FETCH c_tax_unit_id into l_tax_unit_id;

Line 63: hr_utility.set_message(801, 'HR_AU_LE_CHANGE_VAL');

59: FETCH c_check_actions into l_actions_exist;
60: CLOSE c_check_actions;
61:
62: IF l_actions_exist = 'Y' THEN
63: hr_utility.set_message(801, 'HR_AU_LE_CHANGE_VAL');
64: hr_utility.raise_error;
65: END IF;
66: End if;
67: END IF;

Line 64: hr_utility.raise_error;

60: CLOSE c_check_actions;
61:
62: IF l_actions_exist = 'Y' THEN
63: hr_utility.set_message(801, 'HR_AU_LE_CHANGE_VAL');
64: hr_utility.raise_error;
65: END IF;
66: End if;
67: END IF;
68:

Line 70: hr_utility.set_location('End of PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',2);

66: End if;
67: END IF;
68:
69: IF g_debug THEN
70: hr_utility.set_location('End of PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',2);
71: END if;
72: EXCEPTION
73: WHEN OTHERS THEN
74: IF g_debug THEN

Line 75: hr_utility.set_location('Error in PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',100);

71: END if;
72: EXCEPTION
73: WHEN OTHERS THEN
74: IF g_debug THEN
75: hr_utility.set_location('Error in PER_AU_ASG_LEG_HOOK.UPDATE_AU_ASG',100);
76: END IF;
77: RAISE;
78:
79: