DBA Data[Home] [Help]

APPS.AME_ACF_SHD dependencies on HR_API

Line 211: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 216: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 221: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 226: hr_api.mandatory_arg_error(p_api_name => l_proc

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

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

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

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

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

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

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

Line 283: When HR_Api.Object_Locked then

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