DBA Data[Home] [Help]

APPS.HR_SE_CONTACT_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: peconsei.pkb 120.0 2005/05/31 07:09 appldev noship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := 'hr_se_contact_api';
6: g_debug boolean := hr_utility.debug_enabled;
7:
8: --
9: -- ----------------------------------------------------------------------------
10: -- |----------------------------< create_se_person >-----------------------------|

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

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

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

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

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

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

Line 123: hr_utility.set_message_token('LEG_CODE','SE');

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

Line 124: hr_utility.raise_error;

120: --
121: if l_legislation_code <> 'SE' then
122: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
123: hr_utility.set_message_token('LEG_CODE','SE');
124: hr_utility.raise_error;
125: end if;
126: if g_debug then
127: hr_utility.set_location(l_proc, 30);
128: end if;

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

123: hr_utility.set_message_token('LEG_CODE','SE');
124: hr_utility.raise_error;
125: end if;
126: if g_debug then
127: hr_utility.set_location(l_proc, 30);
128: end if;
129:
130: hr_contact_api.create_person
131: (p_validate => p_validate

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

207: ,p_orig_hire_warning => p_orig_hire_warning);
208:
209: --
210: if g_debug then
211: hr_utility.set_location(' Leaving:'||l_proc, 7);
212: end if;
213: --
214: end create_se_person;
215: