DBA Data[Home] [Help]

APPS.BEN_LER_SHD dependencies on HR_API

Line 445: hr_api.mandatory_arg_error(p_api_name => l_proc,

441: hr_utility.set_location('Entering:'||l_proc, 5);
442: --
443: -- Ensure that all the mandatory arguments are not null
444: --
445: hr_api.mandatory_arg_error(p_api_name => l_proc,
446: p_argument => 'effective_date',
447: p_argument_value => p_effective_date);
448: --
449: hr_api.mandatory_arg_error(p_api_name => l_proc,

Line 449: hr_api.mandatory_arg_error(p_api_name => l_proc,

445: hr_api.mandatory_arg_error(p_api_name => l_proc,
446: p_argument => 'effective_date',
447: p_argument_value => p_effective_date);
448: --
449: hr_api.mandatory_arg_error(p_api_name => l_proc,
450: p_argument => 'datetrack_mode',
451: p_argument_value => p_datetrack_mode);
452: --
453: hr_api.mandatory_arg_error(p_api_name => l_proc,

Line 453: hr_api.mandatory_arg_error(p_api_name => l_proc,

449: hr_api.mandatory_arg_error(p_api_name => l_proc,
450: p_argument => 'datetrack_mode',
451: p_argument_value => p_datetrack_mode);
452: --
453: hr_api.mandatory_arg_error(p_api_name => l_proc,
454: p_argument => 'ler_id',
455: p_argument_value => p_ler_id);
456: --
457: hr_api.mandatory_arg_error(p_api_name => l_proc,

Line 457: hr_api.mandatory_arg_error(p_api_name => l_proc,

453: hr_api.mandatory_arg_error(p_api_name => l_proc,
454: p_argument => 'ler_id',
455: p_argument_value => p_ler_id);
456: --
457: hr_api.mandatory_arg_error(p_api_name => l_proc,
458: p_argument => 'object_version_number',
459: p_argument_value => p_object_version_number);
460: --
461: -- Check to ensure the datetrack mode is not INSERT.

Line 557: if p_datetrack_mode = hr_api.g_delete and p_ler_id is not null then

553: -- to parent ben_ler_f, we must manually lock the rows on the child
554: -- where the foreign key name is not ler_id.
555: --
556: begin -- special locking code
557: if p_datetrack_mode = hr_api.g_delete and p_ler_id is not null then
558: Open C_lock(p_ler_id => p_ler_id);
559: <>
560: loop
561: Fetch C_lock Into l_lck_date;

Line 577: When HR_Api.Object_Locked then

573: end loop;
574: Close C_lock;
575: end if;
576: Exception
577: When HR_Api.Object_Locked then
578: --
579: -- The object is locked therefore we need to supply a meaningful
580: -- error message.
581: --

Line 612: When HR_Api.Object_Locked then

608: --
609: -- We need to trap the ORA LOCK exception
610: --
611: Exception
612: When HR_Api.Object_Locked then
613: --
614: -- The object is locked therefore we need to supply a meaningful
615: -- error message.
616: --