DBA Data[Home] [Help]

PACKAGE: APPS.HR_MX_EXTRA_ASG_RULES

Source


1 PACKAGE hr_mx_extra_asg_rules AUTHID CURRENT_USER as
2 /* $Header: hrmxexas.pkh 120.1.12010000.1 2008/07/28 03:31:56 appldev ship $ */
3 
4 PROCEDURE chk_loc_gre_for_leav_reason
5          (p_effective_date        IN DATE,
6           p_datetrack_update_mode IN VARCHAR2,
7           p_assignment_id         IN per_assignments_f.assignment_id%TYPE,
8           p_location_id           IN hr_locations.location_id%TYPE,
9           p_scl_segment1          IN hr_soft_coding_keyflex.segment1%TYPE
10          );
11 
12 PROCEDURE chk_gre_for_leav_reason
13          (p_effective_date        IN DATE,
14           p_datetrack_update_mode IN VARCHAR2,
15           p_assignment_id         IN per_assignments_f.assignment_id%TYPE,
16           p_segment1              IN hr_soft_coding_keyflex.segment1%TYPE
17          ) ;
18 
19 PROCEDURE chk_leav_reason_for_del_asg
20          (p_final_process_date    IN DATE,
21           p_assignment_id         IN per_assignments_f.assignment_id%TYPE
22 	 ) ;
23 
24 PROCEDURE chk_leav_reason_for_del_emp
25         (p_final_process_date    IN DATE,
26          p_period_of_service_id  IN
27                              per_periods_of_service.period_of_service_id%TYPE,
28          p_object_version_number IN NUMBER
29         ) ;
30 
31 PROCEDURE get_gre_loc(p_effective_date IN DATE,
32                       p_assignment_id  IN per_assignments_f.assignment_id%TYPE
33                      ) ;
34 
35 end hr_mx_extra_asg_rules;