DBA Data[Home] [Help]

PACKAGE: APPS.GHR_CUSTOM_PAY_CAP

Source


1 Package ghr_custom_pay_cap AUTHID CURRENT_USER as
2 /* $Header: ghcupcap.pkh 115.1 99/10/18 00:26:46 porting ship  $ */
3 --
4 -- -----------------------------------------------------------------------------
5 -- |-------------------------------< custom_hook >------------------------------|
6 -- -----------------------------------------------------------------------------
7 -- {Start of Comments}
8 --
9 --  Description:
10 --    This procedure is provided for the customer to update to allow them to
11 --    add there own pay cap routines. It is called from the main pay cap
12 --    procedure.
13 --
14 --  Pre Conditions:
15 --    A fully validated entity record structure.
16 --
17 --  In Arguments:
18 --    p_pay_cap_in_data (Record structure for all in data used to do pay_caps ).
19 --
20 --  OUT Arguments:
21 --    p_pay_cap_out_data (Record structure for all out data used to do pay_caps ).
22 -- 		open_pay_fields
23 --          message_set
24 --
25 --  Post Success:
26 --    Processing goes back to the main pay cap process.
27 --
28 --  Post Failure:
29 --    If message_set is set to TRUE then open_pay_fields should also be set to TRUE
30 --    This means in the form (GHRWS52L) the pay field will be opened up
31 --    when validation takes place in Update HR message_set to TRUE will raise
32 --    an error
33 --
34 --  Developer Implementation Notes:
35 --    Customer defined.
36 --
37 --  {End of Comments}
38 -- -----------------------------------------------------------------------------
39 procedure custom_hook
40   (p_pay_cap_in_data  IN     ghr_pay_caps.pay_cap_in_rec_type
41   ,p_pay_cap_out_data IN OUT ghr_pay_caps.pay_cap_out_rec_type
42   );
43 --
44 end ghr_custom_pay_cap;