DBA Data[Home] [Help]

PACKAGE: APPS.AR_CUSTOM_PARAMS_HOOK_PKG

Source


1 PACKAGE AR_CUSTOM_PARAMS_HOOK_PKG AUTHID CURRENT_USER AS
2 /*$Header: ARCUSPARS.pls 120.1 2010/08/03 20:17:45 mraymond noship $*/
3 
4 
5 
6 /*===========================================================================+
7  * PROCEDURE                                                                 *
8  *     populateCAOwnerAttributes                                             *
9  * DESCRIPTION                                                               *
10  *   This procedure is invoked from ar_cao_assign_pkg before calling the     *
11  *   rules engine. The purpose of the procedure is to calculate the          *
12  *   attribute columns. Attribute columns are treated as the param value     *
13  *   based on which the custom param rules are evaluated.                    *
14  *                                                                           *
15  * SCOPE - PUBLIC                                                            *
16  * ARGUMENTS - NONE                                                          *
17  *                                                                           *
18  * RETURNS      NONE                    				                             *
19  * NOTES -                                                                   *
20  * MODIFICATION HISTORY -  23/02/2010 - Created by RVIRIYAL	     	           *
21  *                                                                           *
22  +===========================================================================*/
23 
24 PROCEDURE populateCAOwnerAttributes;
25 
26 /*===========================================================================+
27  * PROCEDURE                                                                 *
28  *     populateContingencyAttributes                                         *
29  * DESCRIPTION                                                               *
30  *   This procedure is invoked from ar_revenue_management_pvt before calling *
31  *   rules engine. The purpose of the procedure is to calculate the          *
32  *   attribute columns. Attribute columns are treated as the param value     *
33  *   based on which the custom param rules are evaluated.                    *
34  *                                                                           *
35  * SCOPE - PUBLIC                                                            *
36  * ARGUMENTS -                                                           *
37  *    p_source  VARCHAR2(10) -- currently either OM or ALL
38                                                                        *
39  * RETURNS      NONE                    				                             *
40  * NOTES -                                                                   *
41  * MODIFICATION HISTORY -  23/02/2010 - Created by RVIRIYAL	     	           *
42  *                                                                           *
43  +===========================================================================*/
44 
45 PROCEDURE populateContingencyAttributes(p_source IN VARCHAR2 default 'ALL');
46 
47 END AR_CUSTOM_PARAMS_HOOK_PKG;