DBA Data[Home] [Help]

APPS.IRC_IAD_SHD dependencies on HR_API

Line 283: hr_api.mandatory_arg_error(p_api_name => l_proc

279: hr_utility.set_location('Entering:'||l_proc, 5);
280: --
281: -- Ensure that all the mandatory arguments are not null
282: --
283: hr_api.mandatory_arg_error(p_api_name => l_proc
284: ,p_argument => 'effective_date'
285: ,p_argument_value => p_effective_date
286: );
287: --

Line 288: hr_api.mandatory_arg_error(p_api_name => l_proc

284: ,p_argument => 'effective_date'
285: ,p_argument_value => p_effective_date
286: );
287: --
288: hr_api.mandatory_arg_error(p_api_name => l_proc
289: ,p_argument => 'datetrack_mode'
290: ,p_argument_value => p_datetrack_mode
291: );
292: --

Line 293: hr_api.mandatory_arg_error(p_api_name => l_proc

289: ,p_argument => 'datetrack_mode'
290: ,p_argument_value => p_datetrack_mode
291: );
292: --
293: hr_api.mandatory_arg_error(p_api_name => l_proc
294: ,p_argument => 'assignment_details_id'
295: ,p_argument_value => p_assignment_details_id
296: );
297: --

Line 298: hr_api.mandatory_arg_error(p_api_name => l_proc

294: ,p_argument => 'assignment_details_id'
295: ,p_argument_value => p_assignment_details_id
296: );
297: --
298: hr_api.mandatory_arg_error(p_api_name => l_proc
299: ,p_argument => 'object_version_number'
300: ,p_argument_value => p_object_version_number
301: );
302: --

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

302: --
303: --
304: -- Check to ensure the datetrack mode is not INSERT.
305: --
306: If (p_datetrack_mode <> hr_api.g_insert) then
307: --
308: -- We must select and lock the current row.
309: --
310: Open C_Sel1;

Line 331: If (p_datetrack_mode = hr_api.g_correction) then

327: --
328: -- Validate the datetrack mode mode getting the validation start
329: -- and end dates for the specified datetrack operation.
330: --
331: If (p_datetrack_mode = hr_api.g_correction) then
332: dt_api.validate_dt_mode
333: (p_effective_date => p_effective_date
334: ,p_datetrack_mode => p_datetrack_mode
335: ,p_base_table_name => 'irc_assignment_details_f'

Line 382: When HR_Api.Object_Locked then

378: --
379: -- We need to trap the ORA LOCK exception
380: --
381: Exception
382: When HR_Api.Object_Locked then
383: --
384: -- The object is locked therefore we need to supply a meaningful
385: -- error message.
386: --