DBA Data[Home] [Help]

APPS.IBY_AVS_CODE_PKG dependencies on IBY_RISK_SCORES_PKG

Line 57: -- iby_risk_scores_pkg.getScore method.

53: -- fetch the values
54: fetch c_get_factor_config into l_score;
55: -- if avscode is not present then assign norisk value
56: -- otherwise get the corresponding value by calling
57: -- iby_risk_scores_pkg.getScore method.
58: if ( c_get_factor_config%notfound) then
59: o_score := 0;
60: else
61: o_score := iby_risk_scores_pkg.getScore(i_payeeid, l_score);

Line 61: o_score := iby_risk_scores_pkg.getScore(i_payeeid, l_score);

57: -- iby_risk_scores_pkg.getScore method.
58: if ( c_get_factor_config%notfound) then
59: o_score := 0;
60: else
61: o_score := iby_risk_scores_pkg.getScore(i_payeeid, l_score);
62: end if;
63: close c_get_factor_config;
64:
65: end eval_factor;