DBA Data[Home] [Help]

PACKAGE: APPS.GHR_CUSTOM_WGI_VALIDATION

Source


1 Package ghr_custom_wgi_validation AUTHID CURRENT_USER as
2 /* $Header: ghcuswgi.pkh 115.1 99/10/18 00:34:36 porting ship  $ */
3 --
4 -- -----------------------------------------------------------------------------
5 -- |-------------------------------< custom_wgi_criteria >--------------------------|
6 -- -----------------------------------------------------------------------------
7 -- {Start of Comments}
8 --
9 --  Description:
10 --    This procedure is provided for the customer to allow them to
11 --    add there own routines to do additional validation for a Automatic Within Grade
12 --    Increase. It is called from the main auto wgi procedure (GHR_WGI_PKG.GHR_WGI_EMP)
13 --
14 --
15 --  In Arguments of the record structure:
16 --    person_id (Person ID of the person selected for Auto WGI ).
17 --    assignment_id (Assignment ID of the person selected for Auto WGI ).
18 --    position_id (From Position of the Person selected for AUTO WGI)
19 --    p_effective_date (Effective date for Auto WGI calculated based on WGI Pay date element).
20 --
21 --  OUT Arguments of the record structure:
22 --    process_person BOOLEAN set to TRUE if Auto WGI is to be given otherwise FALSE
23 --
24 --
25 --
26 --
27 --  Developer Implementation Notes:
28 --    Customer defined.
29 --
30 --  {End of Comments}
31 -- -----------------------------------------------------------------------------
32 procedure custom_wgi_criteria
33    ( p_wgi_in_data_rec              IN     GHR_WGI_PKG.wgi_in_rec_type
34     ,p_wgi_out_data_rec             IN OUT GHR_WGI_PKG.wgi_out_rec_type
35    );
36 --
37 end ghr_custom_wgi_validation;