DBA Data[Home] [Help]

APPS.HR_IT_EMPLOYEE_API dependencies on HR_UTILITY

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

124: from per_business_groups pbg
125: where pbg.business_group_id = p_business_group_id;
126: --
127: begin
128: hr_utility.set_location('Entering:'|| l_proc, 5);
129: --
130: -- Validation in addition to Row Handlers
131: --
132: -- Check that the specified business group is valid.

Line 139: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

135: fetch csr_bg
136: into l_legislation_code;
137: if csr_bg%notfound then
138: close csr_bg;
139: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
140: hr_utility.raise_error;
141: end if;
142: close csr_bg;
143: --

Line 140: hr_utility.raise_error;

136: into l_legislation_code;
137: if csr_bg%notfound then
138: close csr_bg;
139: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
140: hr_utility.raise_error;
141: end if;
142: close csr_bg;
143: --
144: -- Check that the legislation of the specified business group is 'IT'.

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

143: --
144: -- Check that the legislation of the specified business group is 'IT'.
145: --
146: if l_legislation_code <> 'IT' then
147: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
148: hr_utility.set_message_token('LEG_CODE','IT');
149: hr_utility.raise_error;
150: end if;
151:

Line 148: hr_utility.set_message_token('LEG_CODE','IT');

144: -- Check that the legislation of the specified business group is 'IT'.
145: --
146: if l_legislation_code <> 'IT' then
147: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
148: hr_utility.set_message_token('LEG_CODE','IT');
149: hr_utility.raise_error;
150: end if;
151:
152: hr_utility.set_location(l_proc, 6);

Line 149: hr_utility.raise_error;

145: --
146: if l_legislation_code <> 'IT' then
147: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
148: hr_utility.set_message_token('LEG_CODE','IT');
149: hr_utility.raise_error;
150: end if;
151:
152: hr_utility.set_location(l_proc, 6);
153: --

Line 152: hr_utility.set_location(l_proc, 6);

148: hr_utility.set_message_token('LEG_CODE','IT');
149: hr_utility.raise_error;
150: end if;
151:
152: hr_utility.set_location(l_proc, 6);
153: --
154: -- Call the person business process
155: --
156: hr_employee_api.create_employee

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

259: ,p_assign_payroll_warning => p_assign_payroll_warning
260: ,p_orig_hire_warning => p_orig_hire_warning
261: );
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 7);
264: --
265: end create_it_employee;
266: --
267: end hr_it_employee_api;