DBA Data[Home] [Help]

APPS.IGS_FI_SS_ACCT_PAYMENT dependencies on IGS_FI_CREDITS_PKG

Line 23: -- in call to igs_fi_credits_pkg.update_row()

19: -- svuppala 9-JUN-2005 Enh 3442712 - Impact of automatic generation of the Receipt Number.
20: -- changed logic for credit_number in procedure create_cc_credit.
21: --pathipat 21-Apr-2004 Enh 3558549 - Comm Receivables Enh
22: -- Modified update_cc_credit() - added param x_source_invoice_id
23: -- in call to igs_fi_credits_pkg.update_row()
24: --schodava 21-Jan-2004 Bug # 3062706 - Modified procedure finp_calc_fees_todo
25: --vvutukur 04-Dec-2003 Bug#3249288.Modified proceudure finp_set_optional_fee_flag.
26: --pathipat 06-Nov-2003 Enh 3117341 - Audit and Special Fees TD
27: -- Modified finp_calc_fees_todo()

Line 170: sykrishn 04-FEB-2002 Modifications due to SFCR020- Changes to call to credits API and changes in igs_fi_credits_pkg.update_row

166:
167: jbegum 20-FEB-2002 Enh bug # 2228910
168: Removed the source_transaction_id column from igs_fi_inv_int_pkg.update_row
169:
170: sykrishn 04-FEB-2002 Modifications due to SFCR020- Changes to call to credits API and changes in igs_fi_credits_pkg.update_row
171: to add the new columns
172: Code related to derivation of credit_source removed since it is going to be passed as null to credits API. - SFCR020 - 2191470
173:
174: sarakshi 01-Feb-2002 In the call to the credit's API adding a new parameter p_invoice_id as a part of

Line 407: Added param x_source_invoice_id in call to igs_fi_credits_pkg.update_row()

403: Change History
404: Who When What
405: pmarada 26-May-2005 Enh#3020586- added tax year code column as per 1098-t reporting build
406: pathipat 21-Apr-2004 Enh 3558549 - Comm Receivables Enh
407: Added param x_source_invoice_id in call to igs_fi_credits_pkg.update_row()
408: vvutukur 16-Jun-2003 Enh#2831582.Lockbox Build. Added 3 new parameters(lockbox_interface_id,batch_name,deposit_date) to the TBH
409: update_row call of credits table.
410: schodava 16-Jun-2003 Enh 2381587 - Credit Card Fund Transfer Build.
411: Modified the Credits TBH update row

Line 412: vvutukur 16-Dec-2002 Enh#2584741.Modified the tbh call to igs_fi_credits_pkg.update_row to add 3 new

408: vvutukur 16-Jun-2003 Enh#2831582.Lockbox Build. Added 3 new parameters(lockbox_interface_id,batch_name,deposit_date) to the TBH
409: update_row call of credits table.
410: schodava 16-Jun-2003 Enh 2381587 - Credit Card Fund Transfer Build.
411: Modified the Credits TBH update row
412: vvutukur 16-Dec-2002 Enh#2584741.Modified the tbh call to igs_fi_credits_pkg.update_row to add 3 new
413: parameters check_number,source_transaction_type,source_transaction_ref.
414: vchappid 02-Dec-2002 Enh#2584986, NOCOPY is manually added for x_return_status procedure parameter
415: vvutukur 25-Nov-2002 Enh#2584986.Modified the call to igs_fi_credits_pkg.update_row to pass gl_date.
416: vvutukur 16-Sep-2002 Enh#2564643.Removed references to subaccount_id.ie.,from the call to

Line 415: vvutukur 25-Nov-2002 Enh#2584986.Modified the call to igs_fi_credits_pkg.update_row to pass gl_date.

411: Modified the Credits TBH update row
412: vvutukur 16-Dec-2002 Enh#2584741.Modified the tbh call to igs_fi_credits_pkg.update_row to add 3 new
413: parameters check_number,source_transaction_type,source_transaction_ref.
414: vchappid 02-Dec-2002 Enh#2584986, NOCOPY is manually added for x_return_status procedure parameter
415: vvutukur 25-Nov-2002 Enh#2584986.Modified the call to igs_fi_credits_pkg.update_row to pass gl_date.
416: vvutukur 16-Sep-2002 Enh#2564643.Removed references to subaccount_id.ie.,from the call to
417: IGS_FI_CREDITS_pkg.Update_Row,
418: ***************************************************************/
419: CURSOR c_credit_dtls(cp_credit_id NUMBER) IS

Line 417: IGS_FI_CREDITS_pkg.Update_Row,

413: parameters check_number,source_transaction_type,source_transaction_ref.
414: vchappid 02-Dec-2002 Enh#2584986, NOCOPY is manually added for x_return_status procedure parameter
415: vvutukur 25-Nov-2002 Enh#2584986.Modified the call to igs_fi_credits_pkg.update_row to pass gl_date.
416: vvutukur 16-Sep-2002 Enh#2564643.Removed references to subaccount_id.ie.,from the call to
417: IGS_FI_CREDITS_pkg.Update_Row,
418: ***************************************************************/
419: CURSOR c_credit_dtls(cp_credit_id NUMBER) IS
420: SELECT *
421: FROM igs_fi_credits

Line 433: igs_fi_credits_pkg.update_row(x_rowid => l_credit_dtls_rec.row_id,

429: OPEN c_credit_dtls(p_credit_id);
430: FETCH c_credit_dtls INTO l_credit_dtls_rec;
431: CLOSE c_credit_dtls;
432:
433: igs_fi_credits_pkg.update_row(x_rowid => l_credit_dtls_rec.row_id,
434: x_credit_id => l_credit_dtls_rec.credit_id,
435: x_credit_number => l_credit_dtls_rec.credit_number,
436: x_status => l_credit_dtls_rec.status,
437: x_credit_source => l_credit_dtls_rec.credit_source,