DBA Data[Home] [Help]

APPS.IGF_SL_DL_ORIG dependencies on IGF_SL_LOR

Line 33: -- TBH Impact change in igf_sl_lor_loc_pkg.insert_row()

29: -----------------------------------------------------------------------------------
30: -- Who When What
31: -----------------------------------------------------------------------------------
32: -- akomurav 17-Apr-2006 Build FA161 and 162
33: -- TBH Impact change in igf_sl_lor_loc_pkg.insert_row()
34: -- and igf_sl_lor_pkg.update_row().
35: -------------------------------------------------------------------------------------
36: -- museshad 20-Feb-2005 Bug 5045452 - SQL Repository Issue.
37: -- Modified the cursor c_loans for better performance

Line 34: -- and igf_sl_lor_pkg.update_row().

30: -- Who When What
31: -----------------------------------------------------------------------------------
32: -- akomurav 17-Apr-2006 Build FA161 and 162
33: -- TBH Impact change in igf_sl_lor_loc_pkg.insert_row()
34: -- and igf_sl_lor_pkg.update_row().
35: -------------------------------------------------------------------------------------
36: -- museshad 20-Feb-2005 Bug 5045452 - SQL Repository Issue.
37: -- Modified the cursor c_loans for better performance
38: -------------------------------------------------------------------------------------

Line 64: -- in igf_sl_lor_all table and obsoleting

60: -- Removed ref to obsolete columns
61: -----------------------------------------------------------------------------------
62: -- bkkumar 06-oct-2003 Bug 3104228 FA 122 Loans Enhancements
63: -- a) Impact of adding the relationship_cd
64: -- in igf_sl_lor_all table and obsoleting
65: -- BORW_LENDER_ID, DUNS_BORW_LENDER_ID,
66: -- GUARANTOR_ID, DUNS_GUARNT_ID,
67: -- LENDER_ID, DUNS_LENDER_ID
68: -- LEND_NON_ED_BRC_ID, RECIPIENT_ID

Line 75: -- igf_sl_lor_loc_all table.

71: -- b) Also the DUNS_BORW_LENDER_ID
72: -- DUNS_GUARNT_ID
73: -- DUNS_LENDER_ID
74: -- DUNS_RECIP_ID columns are osboleted from the
75: -- igf_sl_lor_loc_all table.
76: -----------------------------------------------------------------------------------
77: -- bkkumar 30-sep-2003 Bug 3104228 FA 122 Loans Enhancements
78: -- Changed the cursor c_tbh_cur
79: -- containing igf_sl_lor_dtls_v with simple

Line 79: -- containing igf_sl_lor_dtls_v with simple

75: -- igf_sl_lor_loc_all table.
76: -----------------------------------------------------------------------------------
77: -- bkkumar 30-sep-2003 Bug 3104228 FA 122 Loans Enhancements
78: -- Changed the cursor c_tbh_cur
79: -- containing igf_sl_lor_dtls_v with simple
80: -- joins and got the details of student and parent
81: -- from igf_sl_gen.get_person_details.
82: -- Added the debugging log messages.
83: -- OBSOLETED FIELDS ::

Line 87: -- chg_batch_id,appl_send_error_codes from igf_sl_lor

83: -- OBSOLETED FIELDS ::
84: -- A) Obsoleted lend_apprv_denied_code,lend_apprv_denied_date,cl_rec_status_last_update,
85: -- cl_rec_status,mpn_confirm_code,appl_loan_phase_code_chg,appl_loan_phase_code,
86: -- p_ssn_chg_date,p_dob_chg_date,s_ssn_chg_date,s_dob_chg_date,s_local_addr_chg_date,
87: -- chg_batch_id,appl_send_error_codes from igf_sl_lor
88: -- B) Obsoleted lend_apprv_denied_code,lend_apprv_denied_date,cl_rec_status_last_update,
89: -- cl_rec_status,mpn_confirm_code,appl_loan_phase_code_chg,appl_loan_phase_code,
90: -- p_ssn_chg_date,p_dob_chg_date,s_ssn_chg_date,s_dob_chg_date,s_local_addr_chg_date,
91: -- chg_batch_id from igf_sl_lor_loc

Line 91: -- chg_batch_id from igf_sl_lor_loc

87: -- chg_batch_id,appl_send_error_codes from igf_sl_lor
88: -- B) Obsoleted lend_apprv_denied_code,lend_apprv_denied_date,cl_rec_status_last_update,
89: -- cl_rec_status,mpn_confirm_code,appl_loan_phase_code_chg,appl_loan_phase_code,
90: -- p_ssn_chg_date,p_dob_chg_date,s_ssn_chg_date,s_dob_chg_date,s_local_addr_chg_date,
91: -- chg_batch_id from igf_sl_lor_loc
92: --------------------------------------------------------------------------------------------------
93: -- gmuralid 03-07-2003 Bug 2995944 - Legacy Part 3 - FFELP Import
94: -- Added legacy record flag as parameter to
95: -- igf_sl_loans_pkg

Line 122: -- in the call to igf_sl_lor tbh

118: -----------------------------------------------------------------------------------
119: -- adhawan 19th feb 2002 Bug:2216956
120: -- added elec_mpn_ind , borr_sign_ind ,
121: -- stud_sign_ind, borr_credit_auth_code
122: -- in the call to igf_sl_lor tbh
123: -----------------------------------------------------------------------------------
124: --
125: lv_cal_type igs_ca_inst.cal_type%TYPE;
126: lv_cal_seq_num igs_ca_inst.sequence_number%TYPE;

Line 180: igf_sl_lor lor,

176: loans.loan_number,
177: fabase.base_id
178: FROM
179: igf_sl_loans loans,
180: igf_sl_lor lor,
181: igf_aw_award awd,
182: igf_aw_fund_mast fmast,
183: igf_aw_fund_cat fcat,
184: igf_ap_fa_base_rec fabase,

Line 434: -- Delete this loan record in IGF_SL_LOR_LOC

430: fnd_file.put_line(FND_FILE.OUTPUT, lv_data_record);
431:
432:
433:
434: -- Delete this loan record in IGF_SL_LOR_LOC
435: DECLARE
436: lv_row_id VARCHAR2(25);
437: CURSOR c_tbh_cur IS
438: SELECT row_id row_id FROM igf_sl_lor_loc

Line 438: SELECT row_id row_id FROM igf_sl_lor_loc

434: -- Delete this loan record in IGF_SL_LOR_LOC
435: DECLARE
436: lv_row_id VARCHAR2(25);
437: CURSOR c_tbh_cur IS
438: SELECT row_id row_id FROM igf_sl_lor_loc
439: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor_loc.sch_cert_date NOWAIT;
440: BEGIN
441: FOR tbh_rec in c_tbh_cur LOOP
442: igf_sl_lor_loc_pkg.delete_row (tbh_rec.row_id);

Line 439: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor_loc.sch_cert_date NOWAIT;

435: DECLARE
436: lv_row_id VARCHAR2(25);
437: CURSOR c_tbh_cur IS
438: SELECT row_id row_id FROM igf_sl_lor_loc
439: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor_loc.sch_cert_date NOWAIT;
440: BEGIN
441: FOR tbh_rec in c_tbh_cur LOOP
442: igf_sl_lor_loc_pkg.delete_row (tbh_rec.row_id);
443: END LOOP;

Line 442: igf_sl_lor_loc_pkg.delete_row (tbh_rec.row_id);

438: SELECT row_id row_id FROM igf_sl_lor_loc
439: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor_loc.sch_cert_date NOWAIT;
440: BEGIN
441: FOR tbh_rec in c_tbh_cur LOOP
442: igf_sl_lor_loc_pkg.delete_row (tbh_rec.row_id);
443: END LOOP;
444: END;
445:
446: -- Delete this loan record in IGF_SL_AWD_DISB_LOC.

Line 470: -- FA 122 Loan Enhancements added this cursor to remove the cursor based on the obsolete view igf_sl_lor_dtls_v

466: parent_dtl_cur igf_sl_gen.person_dtl_cur;
467: student_dtl_rec igf_sl_gen.person_dtl_rec;
468: parent_dtl_rec igf_sl_gen.person_dtl_rec;
469:
470: -- FA 122 Loan Enhancements added this cursor to remove the cursor based on the obsolete view igf_sl_lor_dtls_v
471:
472: CURSOR c_tbh_cur IS
473: SELECT loans.rowid row_id,
474: loans.loan_id,

Line 586: igf_sl_lor_all lor,

582: lor.esign_src_typ_cd,
583: lor.acad_begin_date,
584: lor.acad_end_date
585: FROM igf_sl_loans_all loans,
586: igf_sl_lor_all lor,
587: igf_aw_award_all awd,
588: igf_ap_fa_base_rec_all fabase,
589: igf_aw_fund_mast_all fmast
590: WHERE loans.loan_id = lv_orig_loan_id

Line 666: igf_sl_lor_loc_pkg.insert_row (

662: -- FA 122 Loan Enhancemnets inserted the obsolted fields with NULL
663: -- student details fetched from student_dtl_rec
664: -- parent details fetched from parent_dtl_rec
665:
666: igf_sl_lor_loc_pkg.insert_row (
667: X_Mode => 'R',
668: x_rowid => lv_row_id,
669: x_loan_id => tbh_rec.loan_id,
670: x_origination_id => tbh_rec.origination_id,

Line 950: SELECT igf_sl_lor.* FROM igf_sl_lor

946: -- Update the BATCH ID and BATCH_DATE
947: DECLARE
948: lv_row_id VARCHAR2(25);
949: CURSOR c_tbh_cur IS
950: SELECT igf_sl_lor.* FROM igf_sl_lor
951: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor.sch_cert_date NOWAIT;
952: BEGIN
953:
954: -- FA 122 Loan Enhancemnets updated the obsolted fields with NULL

Line 951: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor.sch_cert_date NOWAIT;

947: DECLARE
948: lv_row_id VARCHAR2(25);
949: CURSOR c_tbh_cur IS
950: SELECT igf_sl_lor.* FROM igf_sl_lor
951: WHERE loan_id = lv_orig_loan_id FOR UPDATE OF igf_sl_lor.sch_cert_date NOWAIT;
952: BEGIN
953:
954: -- FA 122 Loan Enhancemnets updated the obsolted fields with NULL
955:

Line 957: igf_sl_lor_pkg.update_row (

953:
954: -- FA 122 Loan Enhancemnets updated the obsolted fields with NULL
955:
956: FOR tbh_rec in c_tbh_cur LOOP
957: igf_sl_lor_pkg.update_row (
958: X_Mode => 'R',
959: x_rowid => tbh_rec.row_id,
960: x_origination_id => tbh_rec.origination_id,
961: x_loan_id => tbh_rec.loan_id,