DBA Data[Home] [Help]

APPS.AME_CFV_SHD dependencies on HR_API

Line 212: hr_api.mandatory_arg_error(p_api_name => l_proc

208: hr_utility.set_location('Entering:'||l_proc, 5);
209: --
210: -- Ensure that all the mandatory arguments are not null
211: --
212: hr_api.mandatory_arg_error(p_api_name => l_proc
213: ,p_argument => 'effective_date'
214: ,p_argument_value => p_effective_date
215: );
216: --

Line 217: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 222: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 227: hr_api.mandatory_arg_error(p_api_name => l_proc

223: ,p_argument => 'application_id'
224: ,p_argument_value => p_application_id
225: );
226: --
227: hr_api.mandatory_arg_error(p_api_name => l_proc
228: ,p_argument => 'object_version_number'
229: ,p_argument_value => p_object_version_number
230: );
231: --

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

230: );
231: --
232: -- Check to ensure the datetrack mode is not INSERT.
233: --
234: If (p_datetrack_mode <> hr_api.g_insert) then
235: --
236: -- We must select and lock the current row.
237: --
238: Open C_Sel1;

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

267: End If;
268: --
269: -- Set the validation start and end date OUT arguments
270: --
271: if (p_datetrack_mode = hr_api.g_update) then
272: p_validation_start_date := p_effective_date;
273: p_validation_end_date := ame_cfv_shd.g_old_rec.end_date;
274: elsif (p_datetrack_mode = hr_api.g_delete) then
275: p_validation_start_date := p_effective_date;

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

270: --
271: if (p_datetrack_mode = hr_api.g_update) then
272: p_validation_start_date := p_effective_date;
273: p_validation_end_date := ame_cfv_shd.g_old_rec.end_date;
274: elsif (p_datetrack_mode = hr_api.g_delete) then
275: p_validation_start_date := p_effective_date;
276: p_validation_end_date := p_effective_date;
277: end if;
278: --

Line 284: When HR_Api.Object_Locked then

280: --
281: -- We need to trap the ORA LOCK exception
282: --
283: Exception
284: When HR_Api.Object_Locked then
285: --
286: -- The object is locked therefore we need to supply a meaningful
287: -- error message.
288: --