DBA Data[Home] [Help]

PACKAGE: APPS.GHR_MRE_CUSTOM_PKG

Source


1 Package ghr_mre_custom_pkg AUTHID CURRENT_USER as
2 /* $Header: ghmrecus.pkh 120.0 2010/07/21 10:47:51 utokachi noship $ */
3 --
4 -- -----------------------------------------------------------------------------
5 -- |-----------------------------< business_rules >-----------------------|
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 and business rules to determine at the MRE process.
12 --    It is called from the execute_mre procedure.
13 --
14 --
15 --  In Arguments:
16 --    p_mass_realignment_id     -- MRE id associated with the current MRE process
17 --    p_action			-- Action Type associated with the current action CREATE
18 --    p_show_vacant_pos		-- No. of vacant positions
19 
20 --
21 --  OUT Arguments:
22 --
23 --  Post Success:
24 --    Processing goes back to the execute_mre process.
25 
26 --
27 --  Post Failure:
28 --    SQL failure:
29 --      Processing goes back to the execute_mre process:
30 
31 --  Developer Implementation Notes:
32 --    Customer defined.
33 --
34 --  {End of Comments}
35 -- -----------------------------------------------------------------------------
36 procedure business_rules( p_mass_realignment_id IN NUMBER,
37 			  p_action		IN VARCHAR2,
38                           p_show_vacant_pos	IN VARCHAR2);
39 
40 --
41 end ghr_mre_custom_pkg;