DBA Data[Home] [Help]

PACKAGE: APPS.IBY_EVAL_RISKY_INSTR_PKG

Source


1 PACKAGE iby_eval_risky_instr_pkg AUTHID CURRENT_USER AS
2 /*$Header: ibyevrks.pls 115.3 2002/11/18 22:31:49 jleybovi ship $*/
3 
4 
5 /*
6 ** Procedure: eval_factor
7 ** Purpose: Evaluates the risk associated with Risky Instruments
8 **          risk factor.
9 **          The risky instrument(creditcard numeber) will be passed into this routine
10 **          Compare the credit card number with the information stored in the
11 **          risky instrument repository ,if the ccnumber exists then the credit card
12 **          is fruadulent- return the risk score of 100.
13 */
14 
15 procedure eval_factor(i_instrid number,
16                       i_ccnumber in varchar2,
17                       i_payeeid in varchar2,
18                       o_score out nocopy number);
19 
20 end iby_eval_risky_instr_pkg;