DBA Data[Home] [Help]

APPS.PER_AU_ASG_LEG_HOOK dependencies on HR_UTILITY

Line 47: g_debug := hr_utility.debug_enabled;

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

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

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

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

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

Line 65: hr_utility.raise_error;

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

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

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

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

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