DBA Data[Home] [Help]

APPS.HR_KW_CONTACT_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: peconkwi.pkb 120.1 2005/06/22 04:35:16 adevanat noship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := 'hr_kw_contact_api';
6: g_debug boolean := hr_utility.debug_enabled;
7:
8: --
9: -- ----------------------------------------------------------------------------
10: -- |----------------------------< create_kw_person >-----------------------------|

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

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

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

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

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

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

Line 126: hr_utility.set_message_token('LEG_CODE','KW');

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

Line 127: hr_utility.raise_error;

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

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

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

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

213: ,p_orig_hire_warning => p_orig_hire_warning);
214:
215: --
216: if g_debug then
217: hr_utility.set_location(' Leaving:'||l_proc, 7);
218: end if;
219: --
220: end create_kw_person;
221: end hr_kw_contact_api;