DBA Data[Home] [Help]

APPS.IBY_PMT_HISTORY_PKG dependencies on IBY_DEBUG_PUB

Line 96: iby_debug_pub.add('Enter',iby_debug_pub.G_LEVEL_PROCEDURE,l_dbg_mod);

92: l_dbg_mod VARCHAR2(100) := G_DEBUG_MODULE || '.eval_factor';
93:
94:
95: begin
96: iby_debug_pub.add('Enter',iby_debug_pub.G_LEVEL_PROCEDURE,l_dbg_mod);
97:
98: if ( c_get_history_instrnum%isopen ) then
99: close c_get_history_instrnum;
100: end if;

Line 150: iby_debug_pub.add('earliest from date:=' || TO_CHAR(l_fromDate),

146: if (NOT i_ccNumber IS NULL) then
147: l_ccnum_hash := iby_security_pkg.get_hash(i_ccNumber,'F');
148: l_ccnum_obfs := iby_utility_pvt.encode64(i_ccNumber);
149: end if;
150: iby_debug_pub.add('earliest from date:=' || TO_CHAR(l_fromDate),
151: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
152:
153:
154: /*

Line 151: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);

147: l_ccnum_hash := iby_security_pkg.get_hash(i_ccNumber,'F');
148: l_ccnum_obfs := iby_utility_pvt.encode64(i_ccNumber);
149: end if;
150: iby_debug_pub.add('earliest from date:=' || TO_CHAR(l_fromDate),
151: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
152:
153:
154: /*
155: ** get the payment history information of either

Line 166: iby_debug_pub.add('matching payer count:=' || l_purchases_counter,

162: (i_payeeid,i_payerid,l_fromdate);
163: FETCH c_get_history_payer into l_purchases_counter;
164: CLOSE c_get_history_payer;
165: l_no_of_purchases := l_purchases_counter + l_no_of_purchases;
166: iby_debug_pub.add('matching payer count:=' || l_purchases_counter,
167: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
168: END IF;
169:
170: IF (NOT i_instrid IS NULL) THEN

Line 167: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);

163: FETCH c_get_history_payer into l_purchases_counter;
164: CLOSE c_get_history_payer;
165: l_no_of_purchases := l_purchases_counter + l_no_of_purchases;
166: iby_debug_pub.add('matching payer count:=' || l_purchases_counter,
167: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
168: END IF;
169:
170: IF (NOT i_instrid IS NULL) THEN
171: OPEN c_get_history_payerinstr

Line 177: iby_debug_pub.add('matching pyr instr cnt:=' || l_purchases_counter,

173: FETCH c_get_history_payerinstr into l_purchases_counter;
174: CLOSE c_get_history_payerinstr;
175:
176: l_no_of_purchases := l_purchases_counter + l_no_of_purchases;
177: iby_debug_pub.add('matching pyr instr cnt:=' || l_purchases_counter,
178: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
179: END IF;
180:
181: IF (NOT i_ccNumber IS NULL) THEN

Line 178: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);

174: CLOSE c_get_history_payerinstr;
175:
176: l_no_of_purchases := l_purchases_counter + l_no_of_purchases;
177: iby_debug_pub.add('matching pyr instr cnt:=' || l_purchases_counter,
178: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
179: END IF;
180:
181: IF (NOT i_ccNumber IS NULL) THEN
182: OPEN c_get_history_instrnum

Line 188: iby_debug_pub.add('matching cc_num cnt:=' || l_purchases_counter,

184: FETCH c_get_history_instrnum into l_purchases_counter;
185: CLOSE c_get_history_instrnum;
186:
187: l_no_of_purchases := l_purchases_counter + l_no_of_purchases;
188: iby_debug_pub.add('matching cc_num cnt:=' || l_purchases_counter,
189: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
190: END IF;
191:
192:

Line 189: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);

185: CLOSE c_get_history_instrnum;
186:
187: l_no_of_purchases := l_purchases_counter + l_no_of_purchases;
188: iby_debug_pub.add('matching cc_num cnt:=' || l_purchases_counter,
189: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
190: END IF;
191:
192:
193: /*

Line 222: iby_debug_pub.add('Exit',iby_debug_pub.G_LEVEL_PROCEDURE,l_dbg_mod);

218: raise_application_error(-20000, 'IBY_204235#');
219: end if;
220:
221: o_score := iby_risk_scores_pkg.getScore(i_payeeid, l_score);
222: iby_debug_pub.add('Exit',iby_debug_pub.G_LEVEL_PROCEDURE,l_dbg_mod);
223:
224: end eval_factor;
225:
226: end iby_pmt_history_pkg;