DBA Data[Home] [Help]

APPS.PER_OTHERBG_APL_API dependencies on HR_API

Line 124: if l_asg_max_end_date <> hr_api.g_eot then

120: open csr_apl_asg_end_date(l_person_id,effective_date,apl_assignment_id);
121: fetch csr_apl_asg_end_date into l_asg_max_end_date;
122: close csr_apl_asg_end_date;
123:
124: if l_asg_max_end_date <> hr_api.g_eot then
125: -- raise the error as the other assignment whose end date is greater than the current one
126: -- if not running till eot . so end dating the current one
127: hr_utility.set_message(800,'HR_7075_APL_ASS_ONLY_ASS');
128: hr_utility.raise_error;

Line 444: l_end_of_time := hr_api.g_eot; --to_date('31-Dec-4712','dd-Mon-yyyy');

440:
441: BEGIN
442: hr_utility.set_location('Entering:'|| l_proc, 5);
443: hr_utility.set_location('apl_assignment_id :'|| apl_assignment_id, 5);
444: l_end_of_time := hr_api.g_eot; --to_date('31-Dec-4712','dd-Mon-yyyy');
445: l_new_end_date := null;
446:
447: open person_details(apl_assignment_id );
448: -- if person_details%found then

Line 713: set effective_end_date = hr_api.g_eot -- to_date('31-Dec-4712','DD-MON-YYYY')

709: null ,
710: l_cost_warning) ;
711:
712: update per_all_assignments_f
713: set effective_end_date = hr_api.g_eot -- to_date('31-Dec-4712','DD-MON-YYYY')
714: where assignment_id = p_assignment_id;
715:
716: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 15 ) ;
717: end if;