DBA Data[Home] [Help]

APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LB_OVFL_ERRS_PKG

Line 13: in the igs_fi_lb_ovfl_errs_pkg.insert_row and igs_fi_lb_rect_errs_pkg.insert_row calls

9: Known limitations,enhancements,remarks:
10: Change History
11: Who When What
12: svuppala 12-May-2006 Bug 5217319 Added call to format amounts by rounding off to currency precision
13: in the igs_fi_lb_ovfl_errs_pkg.insert_row and igs_fi_lb_rect_errs_pkg.insert_row calls
14: pmarada 26-JUL-2005 Enh 3392095, modifed as per tution waiver build, passing p_api_version
15: parameter value as 2.1 to the igs_fi_credit_pvt.create_credit call
16: svuppala 9-JUN-2005 Enh 3442712 - Impact of automatic generation of the Receipt Number.
17: changed logic for credit_number in invoke_credits_api_pvt().

Line 2164: in the igs_fi_lb_ovfl_errs_pkg.insert_row call

2160: Known limitations,enhancements,remarks:
2161: Change History
2162: Who When What
2163: svuppala 12-May-2006 Bug 5217319 Added call to format amount by rounding off to currency precision
2164: in the igs_fi_lb_ovfl_errs_pkg.insert_row call
2165: ***************************************************************** */
2166: l_v_rowid VARCHAR2(25);
2167: l_n_rec_oflow_err_id igs_fi_lb_ovfl_errs.receipt_overflow_error_id%TYPE;
2168: BEGIN

Line 2174: igs_fi_lb_ovfl_errs_pkg.insert_row(x_rowid => l_v_rowid,

2170: l_n_rec_oflow_err_id := null;
2171:
2172: -- Create a record in the IGS_FI_LB_OVFL_ERRS table
2173: -- Bug 5217319 Added call to format amount by rounding off to currency precision
2174: igs_fi_lb_ovfl_errs_pkg.insert_row(x_rowid => l_v_rowid,
2175: x_receipt_overflow_error_id => l_n_rec_oflow_err_id,
2176: x_lockbox_receipt_error_id => p_n_receipt_error_id,
2177: x_charge_cd1 => p_r_receipt_rec.charge_cd1,
2178: x_charge_cd2 => p_r_receipt_rec.charge_cd2,

Line 2227: igs_fi_lb_ovfl_errs_pkg.delete_row(l_oflow_rec.row_id);

2223: -- For the receipt error id, loop across the records in the Overflow table
2224: FOR l_oflow_rec IN cur_lb_oflow(l_n_receipt_error_id) LOOP
2225:
2226: -- delete the records in the Overflow table
2227: igs_fi_lb_ovfl_errs_pkg.delete_row(l_oflow_rec.row_id);
2228: END LOOP;
2229:
2230: -- Delete the records in the main IGS_FI_LB_RECT_ERRS errors
2231: igs_fi_lb_rect_errs_pkg.delete_row(p_r_rowid);