DBA Data[Home] [Help]

APPS.IGS_FI_GL_INTERFACE dependencies on IGS_AD_APP_REQ

Line 22: Modified transfer_admapp() - modified call to igs_ad_app_req_pkg.update_row()

18: vvutukur 11-Dec-2003 Bug#3310756.Modified procedures transfer_credit,igs_ad_appl.
19: shtatiko 18-NOV-2003 Enh# 3256915, modified get_crd_cat and get_app_cat
20: vvutukur 09-Oct-2003 Bug#3160036. Modified procedure transfer_admapp.
21: pathipat 14-Jun-2003 Enh 2831587 - Credit Card Fund Transfer build
22: Modified transfer_admapp() - modified call to igs_ad_app_req_pkg.update_row()
23: shtatiko 22-APR-2003 Enh# 2831569, Modified validate_parm.
24: agairola 27-Jan-2003 Bug 2711195: Modified the generate_log and transfer procedures
25: agairola 02-Jan-2003 Bug 2714777,2727324: Modified the process for the following
26: 1. In the validate_parm procedure, if the rec_installed is set to N

Line 886: vvutukur 09-Oct-2003 Bug#3160036.Replaced the call to igs_ad_app_req.update_row with

882: Known limitations,enhancements,remarks:
883: Change History
884: Who When What
885: vvutukur 15-Dec-2003 Bug#3310756.Modified cursor cur_adm to check for cash_gl_ccid is not null also.
886: vvutukur 09-Oct-2003 Bug#3160036.Replaced the call to igs_ad_app_req.update_row with
887: the call to igs_ad_gen_015.update_igs_ad_app_req.
888: pathipat 14-Jun-2003 Enh 2831587 - Credit Card Fund Transfer build
889: Modified call to igs_ad_app_req_pkg.update_row - added 3 new parameters
890: ********************************************************************************************** */

Line 887: the call to igs_ad_gen_015.update_igs_ad_app_req.

883: Change History
884: Who When What
885: vvutukur 15-Dec-2003 Bug#3310756.Modified cursor cur_adm to check for cash_gl_ccid is not null also.
886: vvutukur 09-Oct-2003 Bug#3160036.Replaced the call to igs_ad_app_req.update_row with
887: the call to igs_ad_gen_015.update_igs_ad_app_req.
888: pathipat 14-Jun-2003 Enh 2831587 - Credit Card Fund Transfer build
889: Modified call to igs_ad_app_req_pkg.update_row - added 3 new parameters
890: ********************************************************************************************** */
891: l_b_exception_flag BOOLEAN;

Line 889: Modified call to igs_ad_app_req_pkg.update_row - added 3 new parameters

885: vvutukur 15-Dec-2003 Bug#3310756.Modified cursor cur_adm to check for cash_gl_ccid is not null also.
886: vvutukur 09-Oct-2003 Bug#3160036.Replaced the call to igs_ad_app_req.update_row with
887: the call to igs_ad_gen_015.update_igs_ad_app_req.
888: pathipat 14-Jun-2003 Enh 2831587 - Credit Card Fund Transfer build
889: Modified call to igs_ad_app_req_pkg.update_row - added 3 new parameters
890: ********************************************************************************************** */
891: l_b_exception_flag BOOLEAN;
892: l_v_adm_cat gl_je_categories.je_category_name%TYPE;
893: l_v_adm_desc gl_interface.reference10%TYPE;

Line 899: FROM igs_ad_app_req fee,

895: -- Cursor for selecting the records from the admission application table
896: CURSOR cur_adm(cp_gl_date_start DATE,
897: cp_gl_date_end DATE) IS
898: SELECT fee.*, fee.rowid row_id, appl.application_id
899: FROM igs_ad_app_req fee,
900: igs_ad_appl appl
901: WHERE appl.person_id = fee.person_id
902: AND appl.admission_appl_number = fee.admission_appl_number
903: AND fee.gl_date IS NOT NULL

Line 935: p_ref30 => 'IGS_AD_APP_REQ',

931: p_dr_ccid => admrec.cash_gl_ccid,
932: p_cr_ccid => admrec.rev_gl_ccid,
933: p_amount => admrec.fee_amount,
934: p_ref23 => admrec.app_req_id,
935: p_ref30 => 'IGS_AD_APP_REQ',
936: p_desc => l_v_adm_desc);
937: EXCEPTION
938: WHEN OTHERS THEN
939: ROLLBACK TO SP_ADAPP1;

Line 949: igs_ad_gen_015.update_igs_ad_app_req(

945: -- If there is no error in creating transaction in the GL Interface table,
946: -- then update the admission application record by the value of the Posting control id
947: -- and the GL Posted Date
948: IF NOT l_b_exception_flag THEN
949: igs_ad_gen_015.update_igs_ad_app_req(
950: p_rowid => admrec.row_id,
951: p_app_req_id => admrec.app_req_id,
952: p_person_id => admrec.person_id,
953: p_admission_appl_number => admrec.admission_appl_number,