DBA Data[Home] [Help]

APPS.IGS_FI_CHARGES_API_PVT dependencies on IGS_FI_PRC_ACCT_PKG

Line 30: --gurprsin 03-Jun-2005 Enh# 3442712 Modified call to igs_fi_prc_acct_pkg.build_accounts and igs_fi_invln_int_pkg.insert_row methods.

26: --pmarada 26-JUL-2005 Enh 3392095, modifed as per tution waiver build, passing p_api_version
27: -- parameter value as 2.1 to the igs_fi_credit_pvt.create_credit call
28: -- svuppala 9-JUN-2005 Enh 4213629 - Impact of automatic generation of the Receipt Number
29: -- changed logic for l_v_credit_number in procedure proc_neg_chg.
30: --gurprsin 03-Jun-2005 Enh# 3442712 Modified call to igs_fi_prc_acct_pkg.build_accounts and igs_fi_invln_int_pkg.insert_row methods.
31: -- svuppala 05-APR-2005 Bug# "4240402" Additional fix done as part of Time Zone impact
32: -- Changed the negative charge adjustment logic with ORDER BY application_id
33: -- instead of APPLY_DATE as time part of it is truncated.
34: --pathipat 30-Sep-2004 Bug 3908040 - Modified proc_neg_chg() - Removed check on Manage Accounts = Other before application/unapplication

Line 490: Added new parameters to igs_fi_prc_acct_pkg.build_accounts to include unit level attributes.

486: Change History
487:
488: Who When What
489: gurprsin 02-Jun-2005 Enh# 3442712, Modified the Call Build Process
490: Added new parameters to igs_fi_prc_acct_pkg.build_accounts to include unit level attributes.
491: shtatiko 10-DEC-2003 Bug# 3288973, Replaced hard coded transaction type, 'CHARGE', with l_v_transaction_type.
492: vvutukur 17-may-2003 Enh#2831572.Financial Accounting Build. Added 3 new parameters to the call to igs_fi_prc_acct_pkg.build_accounts.
493: vvutukur 17-Sep-2002 Enh#2564643.Removed p_subacccount_id from igs_fi_prc_acct_pkg.build_accounts
494: call.

Line 492: vvutukur 17-may-2003 Enh#2831572.Financial Accounting Build. Added 3 new parameters to the call to igs_fi_prc_acct_pkg.build_accounts.

488: Who When What
489: gurprsin 02-Jun-2005 Enh# 3442712, Modified the Call Build Process
490: Added new parameters to igs_fi_prc_acct_pkg.build_accounts to include unit level attributes.
491: shtatiko 10-DEC-2003 Bug# 3288973, Replaced hard coded transaction type, 'CHARGE', with l_v_transaction_type.
492: vvutukur 17-may-2003 Enh#2831572.Financial Accounting Build. Added 3 new parameters to the call to igs_fi_prc_acct_pkg.build_accounts.
493: vvutukur 17-Sep-2002 Enh#2564643.Removed p_subacccount_id from igs_fi_prc_acct_pkg.build_accounts
494: call.
495: agairola 17-May-2002 Following modifications were done for the bugs 2323555.
496: 1. The parameters p_dr_gl_ccid, p_cr_gl_ccid , p_dr_account_cd and

Line 493: vvutukur 17-Sep-2002 Enh#2564643.Removed p_subacccount_id from igs_fi_prc_acct_pkg.build_accounts

489: gurprsin 02-Jun-2005 Enh# 3442712, Modified the Call Build Process
490: Added new parameters to igs_fi_prc_acct_pkg.build_accounts to include unit level attributes.
491: shtatiko 10-DEC-2003 Bug# 3288973, Replaced hard coded transaction type, 'CHARGE', with l_v_transaction_type.
492: vvutukur 17-may-2003 Enh#2831572.Financial Accounting Build. Added 3 new parameters to the call to igs_fi_prc_acct_pkg.build_accounts.
493: vvutukur 17-Sep-2002 Enh#2564643.Removed p_subacccount_id from igs_fi_prc_acct_pkg.build_accounts
494: call.
495: agairola 17-May-2002 Following modifications were done for the bugs 2323555.
496: 1. The parameters p_dr_gl_ccid, p_cr_gl_ccid , p_dr_account_cd and
497: p_cr_account_cd are made IN OUT NOCOPY from OUT NOCOPY type.

Line 509: The call to the procedure igs_fi_prc_acct_pkg.build_accounts was modified.

505: The cursors cur_uoo_id and cur_loc were removed and cursor cur_unit_cd_ver was added.
506: The cursor FOR loop for retrieving the uoo_id has been removed.
507: The IF condition which obtained the location_cd depending on the charge method method was removed
508: and now the value of location_cd was obtained directly from p_line_rec.p_location_cd.
509: The call to the procedure igs_fi_prc_acct_pkg.build_accounts was modified.
510: **********************************************************************************************************************/
511:
512:
513: l_dr_gl_ccid igs_fi_invln_int_all.rec_gl_ccid%TYPE;

Line 575: -- unit_cd and unit_version_number values to pass in the call to igs_fi_prc_acct_pkg.build_accounts

571: l_st_date:= rec_org_st_dt.start_dt;
572: END LOOP;
573:
574: -- As part of bug #1962286 the following cursor FOR loop was added to fetch the
575: -- unit_cd and unit_version_number values to pass in the call to igs_fi_prc_acct_pkg.build_accounts
576:
577: FOR rec_unit_cd_ver IN cur_unit_cd_ver ( p_line_rec.p_uoo_id)
578: LOOP
579: l_unit_cd:= rec_unit_cd_ver.unit_cd;

Line 586: -- call to igs_fi_prc_acct_pkg.build_accounts p_line_rec.p_location_cd is being passed directly.

582:
583: -- As part of bug #1962286
584: -- The IF condition which obtained the location_cd depending on the charge method method was removed
585: -- and now the value of location_cd is obtained directly from p_line_rec.p_location_cd.Hence in the
586: -- call to igs_fi_prc_acct_pkg.build_accounts p_line_rec.p_location_cd is being passed directly.
587:
588:
589: -- As part of bug #1962286 the call to igs_fi_prc_acct_pkg.build_accounts was modified.
590: -- Instead of p_line_rec.p_unit_cd , p_line_rec.p_unit_version_number , l_uoo_id being passed

Line 589: -- As part of bug #1962286 the call to igs_fi_prc_acct_pkg.build_accounts was modified.

585: -- and now the value of location_cd is obtained directly from p_line_rec.p_location_cd.Hence in the
586: -- call to igs_fi_prc_acct_pkg.build_accounts p_line_rec.p_location_cd is being passed directly.
587:
588:
589: -- As part of bug #1962286 the call to igs_fi_prc_acct_pkg.build_accounts was modified.
590: -- Instead of p_line_rec.p_unit_cd , p_line_rec.p_unit_version_number , l_uoo_id being passed
591: -- l_unit_cd , l_unit_version_number , p_line_rec.p_uoo_id are passed
592:
593: l_dr_gl_ccid := p_dr_gl_ccid;

Line 604: igs_fi_prc_acct_pkg.build_accounts(

600: ELSE
601: l_v_transaction_type := 'CHARGE';
602: END IF;
603:
604: igs_fi_prc_acct_pkg.build_accounts(
605: p_fee_type => p_header_rec.p_fee_type,
606: p_fee_cal_type => p_header_rec.p_fee_cal_type,
607: p_fee_ci_sequence_number => p_header_rec.p_fee_ci_sequence_number,
608: p_course_cd => p_header_rec.p_course_cd,