DBA Data[Home] [Help]

APPS.AME_RLU_SHD dependencies on HR_API

Line 231: hr_api.mandatory_arg_error(p_api_name => l_proc

227: hr_utility.set_location('Entering:'||l_proc, 5);
228: --
229: -- Ensure that all the mandatory arguments are not null
230: --
231: hr_api.mandatory_arg_error(p_api_name => l_proc
232: ,p_argument => 'effective_date'
233: ,p_argument_value => p_effective_date
234: );
235: --

Line 236: hr_api.mandatory_arg_error(p_api_name => l_proc

232: ,p_argument => 'effective_date'
233: ,p_argument_value => p_effective_date
234: );
235: --
236: hr_api.mandatory_arg_error(p_api_name => l_proc
237: ,p_argument => 'datetrack_mode'
238: ,p_argument_value => p_datetrack_mode
239: );
240: --

Line 241: hr_api.mandatory_arg_error(p_api_name => l_proc

237: ,p_argument => 'datetrack_mode'
238: ,p_argument_value => p_datetrack_mode
239: );
240: --
241: hr_api.mandatory_arg_error(p_api_name => l_proc
242: ,p_argument => 'rule_id'
243: ,p_argument_value => p_rule_id
244: );
245: --

Line 246: hr_api.mandatory_arg_error(p_api_name => l_proc

242: ,p_argument => 'rule_id'
243: ,p_argument_value => p_rule_id
244: );
245: --
246: hr_api.mandatory_arg_error(p_api_name => l_proc
247: ,p_argument => 'object_version_number'
248: ,p_argument_value => p_object_version_number
249: );
250: --

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

249: );
250: --
251: -- Check to ensure the datetrack mode is not INSERT.
252: --
253: If (p_datetrack_mode <> hr_api.g_insert) then
254: --
255: -- We must select and lock the current row.
256: --
257: Open C_Sel1;

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

286: End If;
287: --
288: -- Set the validation start and end date OUT arguments
289: --
290: if (p_datetrack_mode = hr_api.g_update) then
291: p_validation_start_date := p_effective_date;
292: p_validation_end_date := ame_rlu_shd.g_old_rec.end_date;
293: elsif (p_datetrack_mode = hr_api.g_delete) then
294: p_validation_start_date := p_effective_date;

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

289: --
290: if (p_datetrack_mode = hr_api.g_update) then
291: p_validation_start_date := p_effective_date;
292: p_validation_end_date := ame_rlu_shd.g_old_rec.end_date;
293: elsif (p_datetrack_mode = hr_api.g_delete) then
294: p_validation_start_date := p_effective_date;
295: p_validation_end_date := p_effective_date;
296: end if;
297: --

Line 324: When HR_Api.Object_Locked then

320: --
321: -- We need to trap the ORA LOCK exception
322: --
323: Exception
324: When HR_Api.Object_Locked then
325: --
326: -- The object is locked therefore we need to supply a meaningful
327: -- error message.
328: --