DBA Data[Home] [Help]

PACKAGE: APPS.AR_CMGT_PARAMS_HOOK_PKG

Source


1 PACKAGE AR_CMGT_PARAMS_HOOK_PKG AUTHID CURRENT_USER AS
2 /*$Header: ARCMGPARS.pls 120.0.12010000.1 2010/03/02 09:20:21 appldev noship $*/
3 
4 
5 /*===========================================================================+
6  * PROCEDURE                                                                 *
7  *     get_ocm_custom_param_value()                                               *
8  * DESCRIPTION                                                               *
9  *   This procedure is invoked from Credit Management Workflow Engine before *
10  * invoking the rules engine to retrive the value for a customer parameter.  *
11  * This method is invoked for each of the custom parameter under Rule Object *
12  * Name OCM_CREDIT_ANALYST_ASSGN and retrive its value. Value retrived is the*
13  * out parameter for this procedure. Once the parameter value is retrived    *
14  * in the calling Credit Management Workflow Engine,custom parameter and its *
15  * values are set in the Rules Engine to evaluate the rules.                 *
16  *                                                                           *
17  * SCOPE - PUBLIC                                                            *
18  * ARGUMENTS                                                                 *
19  *              IN  : p_credit_request_id                                    *
20  *              IN  : p_custom_param_name                                    *
21  *              OUT : p_custom_param_value                                   *
22  *                                                                           *
23  * RETURNS      NONE                    				                             *
24  * NOTES -                                                                   *
25  * MODIFICATION HISTORY -  23/02/2010 - Created by RVIRIYAL	     	           *
26  *                                                                           *
27  +===========================================================================*/
28  PROCEDURE get_ocm_custom_param_value ( P_CREDIT_REQUEST_ID    IN  NUMBER
29                                        ,P_CUSTOM_PARAM_NAME    IN  VARCHAR2
30                                        ,P_CUSTOM_PARAM_VALUE   OUT NOCOPY VARCHAR2);
31 
32 END AR_CMGT_PARAMS_HOOK_PKG;