DBA Data[Home] [Help]

APPS.PER_OTHERBG_APL_API dependencies on PER_APP_ASG_PKG

Line 478: per_app_asg_pkg.pre_delete_validation

474:
475: If csr_apl_assignments%found then
476: close csr_apl_assignments;
477: hr_utility.set_location('More than one Application :', 50);
478: per_app_asg_pkg.pre_delete_validation
479: ( p_business_group_id => l_business_group_id,
480: p_assignment_id => apl_assignment_id,
481: p_application_id => l_application_id,
482: p_person_id => l_person_id,

Line 642: -- hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_child' , 5) ;

638:
639: --
640: BEGIN
641:
642: -- hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_child' , 5) ;
643: --
644: BEGIN
645: select 'Y'
646: into p_del_flag

Line 679: --This API is similar to the one per_app_asg_pkg.delete_row

675: p_delete_mode varchar2 ) is
676:
677: l_cost_warning boolean;
678: begin
679: --This API is similar to the one per_app_asg_pkg.delete_row
680: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 5 ) ;
681: hr_utility.set_location('p_session_date :'|| p_session_date, 200);
682: hr_utility.set_location('p_effective_end_date :'|| p_effective_end_date, 200);
683: hr_utility.set_location('p_validation_end_date :'|| p_validation_end_date, 200);

Line 680: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 5 ) ;

676:
677: l_cost_warning boolean;
678: begin
679: --This API is similar to the one per_app_asg_pkg.delete_row
680: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 5 ) ;
681: hr_utility.set_location('p_session_date :'|| p_session_date, 200);
682: hr_utility.set_location('p_effective_end_date :'|| p_effective_end_date, 200);
683: hr_utility.set_location('p_validation_end_date :'|| p_validation_end_date, 200);
684: hr_utility.set_location('p_delete_mode :'|| p_delete_mode, 200);

Line 716: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 15 ) ;

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;
718: else
719: hr_assignment.tidy_up_ref_int ( p_assignment_id,
720: 'FUTURE',

Line 726: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 20 ) ;

722: p_effective_end_date,
723: null,
724: null,
725: l_cost_warning ) ;
726: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row1' , 20 ) ;
727: end if;
728: --
729: if ( p_new_end_date is not null ) then
730: set_end_date ( p_new_end_date , p_assignment_id ) ;

Line 733: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row' , 25 ) ;

729: if ( p_new_end_date is not null ) then
730: set_end_date ( p_new_end_date , p_assignment_id ) ;
731:
732:
733: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row' , 25 ) ;
734: end if;
735: --
736: per_app_asg_pkg.cleanup_letters ( p_assignment_id ) ;
737:

Line 736: per_app_asg_pkg.cleanup_letters ( p_assignment_id ) ;

732:
733: hr_utility.set_location ( 'PER_APP_ASG_PKG.delete_row' , 25 ) ;
734: end if;
735: --
736: per_app_asg_pkg.cleanup_letters ( p_assignment_id ) ;
737:
738:
739: end delete_row1;
740: