DBA Data[Home] [Help]

APPS.HR_SA_APPLICANT_API dependencies on HR_UTILITY

Line 123: hr_utility.set_location('Entering:'|| l_proc, 45);

119: FROM per_business_groups pbg
120: WHERE pbg.business_group_id = p_business_group_id;
121: --
122: begin
123: hr_utility.set_location('Entering:'|| l_proc, 45);
124: --
125: -- Validation IN addition to Table Handlers
126: --
127: -- Check that the specified business group IS valid.

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

130: FETCH csr_bg
131: INTO l_legislation_code;
132: IF csr_bg%notfound then
133: close csr_bg;
134: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
135: hr_utility.raise_error;
136: END IF;
137: close csr_bg;
138: --

Line 135: hr_utility.raise_error;

131: INTO l_legislation_code;
132: IF csr_bg%notfound then
133: close csr_bg;
134: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
135: hr_utility.raise_error;
136: END IF;
137: close csr_bg;
138: --
139: -- Check that the legislation of the specified business group IS 'SA'.

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

138: --
139: -- Check that the legislation of the specified business group IS 'SA'.
140: --
141: IF l_legislation_code <> 'SA' then
142: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
143: hr_utility.set_message_token('LEG_CODE','SA');
144: hr_utility.raise_error;
145: END IF;
146:

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

139: -- Check that the legislation of the specified business group IS 'SA'.
140: --
141: IF l_legislation_code <> 'SA' then
142: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
143: hr_utility.set_message_token('LEG_CODE','SA');
144: hr_utility.raise_error;
145: END IF;
146:
147: hr_utility.set_location(l_proc, 50);

Line 144: hr_utility.raise_error;

140: --
141: IF l_legislation_code <> 'SA' then
142: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
143: hr_utility.set_message_token('LEG_CODE','SA');
144: hr_utility.raise_error;
145: END IF;
146:
147: hr_utility.set_location(l_proc, 50);
148: --

Line 147: hr_utility.set_location(l_proc, 50);

143: hr_utility.set_message_token('LEG_CODE','SA');
144: hr_utility.raise_error;
145: END IF;
146:
147: hr_utility.set_location(l_proc, 50);
148: --
149: -- Call the person business process
150: --
151: hr_applicant_api.create_applicant

Line 257: hr_utility.set_location(' Leaving:'||l_proc, 55);

253: ,p_name_combination_warning => p_name_combination_warning
254: ,p_orig_hire_warning => p_orig_hire_warning
255: );
256: --
257: hr_utility.set_location(' Leaving:'||l_proc, 55);
258: end create_sa_applicant;
259: --
260: end hr_sa_applicant_api;