DBA Data[Home] [Help]

APPS.AME_ATY_SHD dependencies on HR_API

Line 208: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 213: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 218: hr_api.mandatory_arg_error(p_api_name => l_proc

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

Line 223: hr_api.mandatory_arg_error(p_api_name => l_proc

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

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

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

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

282: --
283: -- p_validation_start_date := l_validation_start_date;
284: -- p_validation_end_date := l_validation_end_date;
285: -- MURTHY_CHANGES
286: if (p_datetrack_mode = hr_api.g_update) then
287: p_validation_start_date := p_effective_date;
288: p_validation_end_date := ame_aty_shd.g_old_rec.end_date;
289: elsif (p_datetrack_mode = hr_api.g_delete) then
290: p_validation_start_date := p_effective_date;

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

285: -- MURTHY_CHANGES
286: if (p_datetrack_mode = hr_api.g_update) then
287: p_validation_start_date := p_effective_date;
288: p_validation_end_date := ame_aty_shd.g_old_rec.end_date;
289: elsif (p_datetrack_mode = hr_api.g_delete) then
290: p_validation_start_date := p_effective_date;
291: p_validation_end_date := p_effective_date;
292: end if;
293: --

Line 299: When HR_Api.Object_Locked then

295: --
296: -- We need to trap the ORA LOCK exception
297: --
298: Exception
299: When HR_Api.Object_Locked then
300: --
301: -- The object is locked therefore we need to supply a meaningful
302: -- error message.
303: --