DBA Data[Home] [Help]

APPS.IGS_FI_BILL_EXTRACT dependencies on IGS_FI_CR_ACTIVITIES_PKG

Line 20: -- IGS_FI_INV_INT_PKG, IGS_FI_CR_ACTIVITIES_PKG, IGS_FI_BILL_PKG.

16: -- In PROCEDURE bill_the_person, added new cursor cur_fee_type and added fee_class_meaning
17: -- incase of Sponsor system fee type.
18: --uudayapr 28-Jun-2005 Bug 2767636 Modified the bill_the_person procedure.
19: --svuppala 11-Mar-2005 Bug 4240402 Timezone impact; truncating the time part in calling place of the table handlers
20: -- IGS_FI_INV_INT_PKG, IGS_FI_CR_ACTIVITIES_PKG, IGS_FI_BILL_PKG.
21: -- Modified the sysdate entries as Trunc(Sysdate).
22: --pathipat 21-Jul-2004 Bug 3778782 - Modified procedure billing_extract() and bill_the_person()
23: --pathipat 06-May-2004 Bug# 3578249 - Modified procedure billing_extract()
24: --vvutukur 23-Jan-2004 Bug#3348787.Modified procedure billing_extract.

Line 273: -- and added gl_date, gl_posted_date and posting_control_id columns to igs_fi_cr_activities_pkg calls

269: --vvutukur 07-dec-2003 Bug#3146325.Removed cursor cur_transactions_found and its usage. Added logic to
270: -- rollback the bill txns if no records found for processing.This is done using
271: -- boolean variable.
272: --shtatiko 21-AUG-2003 Bug# 3106262, Added reversal_gl_date column to igs_fi_inv_int_pkg.update_row call
273: -- and added gl_date, gl_posted_date and posting_control_id columns to igs_fi_cr_activities_pkg calls
274: --vvutukur 18-ul-2003 Enh#3038511.FICR106 Build. Modified cursor cur_planned_crd to to exclude the
275: -- planned credits for which the Award Year status is not OPEN.
276: --shtatiko 12-DEC-2002 Enh Bug# 2584741, Added c_bill_deposits and modified code so that report will include
277: -- Deposit records in report.

Line 1199: igs_fi_cr_activities_pkg.update_row (

1195: LOOP
1196: OPEN cur_credit_hist (rec_cur_credit_trans.credit_activity_id);
1197: FETCH cur_credit_hist INTO rec_cur_credit_hist;
1198: IF (cur_credit_hist%FOUND) THEN
1199: igs_fi_cr_activities_pkg.update_row (
1200: x_rowid => rec_cur_credit_hist.rowid,
1201: x_credit_activity_id => rec_cur_credit_hist.credit_activity_id,
1202: x_credit_id => rec_cur_credit_hist.credit_id,
1203: x_status => rec_cur_credit_hist.status,

Line 1231: igs_fi_cr_activities_pkg.update_row (

1227: -- Modified bill_date entry as Trunc(Sysdate) as part of Bug 4240402: Timezone impact
1228: OPEN cur_credit_hist (rec_bill_deposits.credit_activity_id);
1229: FETCH cur_credit_hist INTO rec_cur_credit_hist;
1230: IF (cur_credit_hist%FOUND) THEN
1231: igs_fi_cr_activities_pkg.update_row (
1232: x_rowid => rec_cur_credit_hist.rowid,
1233: x_credit_activity_id => rec_cur_credit_hist.credit_activity_id,
1234: x_credit_id => rec_cur_credit_hist.credit_id,
1235: x_status => rec_cur_credit_hist.status,