DBA Data[Home] [Help]

APPS.IBY_AVS_CODE_PKG dependencies on IBY_RISK_SCORES_PKG

Line 52: -- iby_risk_scores_pkg.getScore method.

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

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

52: -- iby_risk_scores_pkg.getScore method.
53: if ( c_get_factor_config%notfound) then
54: o_score := 0;
55: else
56: o_score := iby_risk_scores_pkg.getScore(i_payeeid, l_score);
57: end if;
58: close c_get_factor_config;
59:
60: end eval_factor;