DBA Data[Home] [Help]

APPS.AME_ACA_SHD dependencies on HR_API

Line 206: hr_api.mandatory_arg_error(p_api_name => l_proc

202: hr_utility.set_location('Entering:'||l_proc, 5);
203: --
204: -- Ensure that all the mandatory arguments are not null
205: --
206: hr_api.mandatory_arg_error(p_api_name => l_proc
207: ,p_argument => 'effective_date'
208: ,p_argument_value => p_effective_date
209: );
210: --

Line 211: hr_api.mandatory_arg_error(p_api_name => l_proc

207: ,p_argument => 'effective_date'
208: ,p_argument_value => p_effective_date
209: );
210: --
211: hr_api.mandatory_arg_error(p_api_name => l_proc
212: ,p_argument => 'datetrack_mode'
213: ,p_argument_value => p_datetrack_mode
214: );
215: --

Line 216: hr_api.mandatory_arg_error(p_api_name => l_proc

212: ,p_argument => 'datetrack_mode'
213: ,p_argument_value => p_datetrack_mode
214: );
215: --
216: hr_api.mandatory_arg_error(p_api_name => l_proc
217: ,p_argument => 'application_id'
218: ,p_argument_value => p_application_id
219: );
220: --

Line 221: hr_api.mandatory_arg_error(p_api_name => l_proc

217: ,p_argument => 'application_id'
218: ,p_argument_value => p_application_id
219: );
220: --
221: hr_api.mandatory_arg_error(p_api_name => l_proc
222: ,p_argument => 'object_version_number'
223: ,p_argument_value => p_object_version_number
224: );
225: --

Line 228: If (p_datetrack_mode <> hr_api.g_insert) then

224: );
225: --
226: -- Check to ensure the datetrack mode is not INSERT.
227: --
228: If (p_datetrack_mode <> hr_api.g_insert) then
229: --
230: -- We must select and lock the current row.
231: --
232: Open C_Sel1;

Line 265: if (p_datetrack_mode = hr_api.g_update) then

261: End If;
262: --
263: -- Set the validation start and end date OUT arguments
264: --
265: if (p_datetrack_mode = hr_api.g_update) then
266: p_validation_start_date := p_effective_date;
267: p_validation_end_date := ame_aca_shd.g_old_rec.end_date;
268: elsif (p_datetrack_mode = hr_api.g_delete) then
269: p_validation_start_date := p_effective_date;

Line 268: elsif (p_datetrack_mode = hr_api.g_delete) then

264: --
265: if (p_datetrack_mode = hr_api.g_update) then
266: p_validation_start_date := p_effective_date;
267: p_validation_end_date := ame_aca_shd.g_old_rec.end_date;
268: elsif (p_datetrack_mode = hr_api.g_delete) then
269: p_validation_start_date := p_effective_date;
270: p_validation_end_date := p_effective_date;
271: end if;
272: --

Line 278: When HR_Api.Object_Locked then

274: --
275: -- We need to trap the ORA LOCK exception
276: --
277: Exception
278: When HR_Api.Object_Locked then
279: --
280: -- The object is locked therefore we need to supply a meaningful
281: -- error message.
282: --