DBA Data[Home] [Help]

APPS.HR_SA_CONTACT_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: peconsai.pkb 120.3 2005/06/20 02:11:56 adevanat noship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := 'hr_sa_contact_api';
6: g_debug boolean := hr_utility.debug_enabled;
7:
8: --
9: -- ----------------------------------------------------------------------------
10: -- |----------------------------< create_sa_person >-----------------------------|

Line 110: hr_utility.set_location('Entering:'|| l_proc, 5);

106: where bgp.business_group_id = c_business_group_id;
107: begin
108:
109: if g_debug then
110: hr_utility.set_location('Entering:'|| l_proc, 5);
111: end if;
112: --
113: -- Validation in addition to Row Handlers
114: --

Line 120: hr_utility.set_location(l_proc, 20);

116: open check_legislation(p_business_group_id);
117: fetch check_legislation into l_legislation_code;
118: close check_legislation;
119: if g_debug then
120: hr_utility.set_location(l_proc, 20);
121: end if;
122: --
123: -- Check that the legislation of the specified business group is 'SA'.
124: --

Line 126: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

122: --
123: -- Check that the legislation of the specified business group is 'SA'.
124: --
125: if l_legislation_code <> 'SA' then
126: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
127: hr_utility.set_message_token('LEG_CODE','SA');
128: hr_utility.raise_error;
129: end if;
130: if g_debug then

Line 127: hr_utility.set_message_token('LEG_CODE','SA');

123: -- Check that the legislation of the specified business group is 'SA'.
124: --
125: if l_legislation_code <> 'SA' then
126: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
127: hr_utility.set_message_token('LEG_CODE','SA');
128: hr_utility.raise_error;
129: end if;
130: if g_debug then
131: hr_utility.set_location(l_proc, 30);

Line 128: hr_utility.raise_error;

124: --
125: if l_legislation_code <> 'SA' then
126: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
127: hr_utility.set_message_token('LEG_CODE','SA');
128: hr_utility.raise_error;
129: end if;
130: if g_debug then
131: hr_utility.set_location(l_proc, 30);
132: end if;

Line 131: hr_utility.set_location(l_proc, 30);

127: hr_utility.set_message_token('LEG_CODE','SA');
128: hr_utility.raise_error;
129: end if;
130: if g_debug then
131: hr_utility.set_location(l_proc, 30);
132: end if;
133:
134: hr_contact_api.create_person
135: (p_validate => p_validate

Line 219: hr_utility.set_location(' Leaving:'||l_proc, 7);

215: ,p_orig_hire_warning => p_orig_hire_warning);
216:
217: --
218: if g_debug then
219: hr_utility.set_location(' Leaving:'||l_proc, 7);
220: end if;
221: --
222: end create_sa_person;
223: end hr_sa_contact_api;