DBA Data[Home] [Help]

APPS.IGF_SL_CL_CREATE_CHG dependencies on IGF_SL_CLCHSN_DTLS

Line 26: FUNCTION get_sl_clchsn_dtls ( p_rowid ROWID) RETURN igf_sl_clchsn_dtls%ROWTYPE;

22: PROCEDURE log_to_fnd ( p_v_module IN VARCHAR2,
23: p_v_string IN VARCHAR2
24: );
25: -- function to return the change send details
26: FUNCTION get_sl_clchsn_dtls ( p_rowid ROWID) RETURN igf_sl_clchsn_dtls%ROWTYPE;
27:
28: PROCEDURE create_loan_chg_rec(p_new_loan_rec IN igf_sl_loans_all%ROWTYPE,
29: p_b_return_status OUT NOCOPY BOOLEAN,
30: p_v_message_name OUT NOCOPY VARCHAR2

Line 72: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;

68:
69: rec_c_igf_sl_cl_resp_r1 c_igf_sl_cl_resp_r1%ROWTYPE;
70:
71: TYPE ref_CurclchsnTyp IS REF CURSOR;
72: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
73:
74: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
75:
76: l_d_loan_per_begin_date igf_sl_cl_resp_r1_all.loan_per_begin_date%TYPE;

Line 74: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;

70:
71: TYPE ref_CurclchsnTyp IS REF CURSOR;
72: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
73:
74: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
75:
76: l_d_loan_per_begin_date igf_sl_cl_resp_r1_all.loan_per_begin_date%TYPE;
77: l_d_loan_per_end_date igf_sl_cl_resp_r1_all.loan_per_end_date%TYPE;
78: l_d_res_loan_per_begin_dt igf_sl_cl_resp_r1_all.loan_per_begin_date%TYPE;

Line 82: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;

78: l_d_res_loan_per_begin_dt igf_sl_cl_resp_r1_all.loan_per_begin_date%TYPE;
79: l_d_res_loan_per_end_dt igf_sl_cl_resp_r1_all.loan_per_end_date%TYPE;
80: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;
81: l_v_loan_status igf_sl_loans_all.loan_status%TYPE;
82: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;
83: l_n_award_id igf_aw_award_all.award_id%TYPE;
84: l_v_loan_number igf_sl_loans_all.loan_number%TYPE;
85: l_n_loan_id igf_sl_loans_all.loan_id%TYPE;
86: l_c_cl_rec_status igf_sl_lor_all.cl_rec_status%TYPE;

Line 179: 'FROM igf_sl_clchsn_dtls chdt ' ||

175: ' change_field_code : ' || 'LOAN_PER_BEGIN_DT'
176: );
177: -- verify if the existing change record is to be updated or inserted
178: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
179: 'FROM igf_sl_clchsn_dtls chdt ' ||
180: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
181: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
182: 'AND chdt.old_date = :cp_d_resp_begin_dt ' ||
183: 'AND chdt.change_field_code = ''LOAN_PER_BEGIN_DT'' '||

Line 187: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_begin_dt;

183: 'AND chdt.change_field_code = ''LOAN_PER_BEGIN_DT'' '||
184: 'AND chdt.change_code_txt = ''A'' ' ||
185: 'AND chdt.change_record_type_txt = ''07'' ';
186:
187: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_begin_dt;
188: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
189: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
190: CLOSE c_igf_sl_clchsn_dtls;
191: l_v_rowid := NULL;

Line 188: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

184: 'AND chdt.change_code_txt = ''A'' ' ||
185: 'AND chdt.change_record_type_txt = ''07'' ';
186:
187: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_begin_dt;
188: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
189: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
190: CLOSE c_igf_sl_clchsn_dtls;
191: l_v_rowid := NULL;
192: l_n_clchgsnd_id := NULL;

Line 189: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

185: 'AND chdt.change_record_type_txt = ''07'' ';
186:
187: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_begin_dt;
188: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
189: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
190: CLOSE c_igf_sl_clchsn_dtls;
191: l_v_rowid := NULL;
192: l_n_clchgsnd_id := NULL;
193: log_to_fnd(p_v_module => 'create_loan_chg_rec',

Line 190: CLOSE c_igf_sl_clchsn_dtls;

186:
187: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_begin_dt;
188: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
189: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
190: CLOSE c_igf_sl_clchsn_dtls;
191: l_v_rowid := NULL;
192: l_n_clchgsnd_id := NULL;
193: log_to_fnd(p_v_module => 'create_loan_chg_rec',
194: p_v_string => ' New Change record is Created ' ||

Line 200: igf_sl_clchsn_dtls_pkg.insert_row

196: ' Change record type: ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||
197: ' Change code : ' ||'A - Loan Period Change '
198: );
199:
200: igf_sl_clchsn_dtls_pkg.insert_row
201: (
202: x_rowid => l_v_rowid,
203: x_clchgsnd_id => l_n_clchgsnd_id,
204: x_award_id => l_n_award_id,

Line 265: CLOSE c_igf_sl_clchsn_dtls;

261: log_to_fnd(p_v_module => 'create_loan_chg_rec',
262: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
263: );
264: ELSE
265: CLOSE c_igf_sl_clchsn_dtls;
266: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
267: log_to_fnd(p_v_module => 'create_loan_chg_rec',
268: p_v_string => ' Change record is updated ' ||
269: ' Change_field_code : ' ||'LOAN_PER_BEGIN_DT' ||

Line 266: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

262: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
263: );
264: ELSE
265: CLOSE c_igf_sl_clchsn_dtls;
266: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
267: log_to_fnd(p_v_module => 'create_loan_chg_rec',
268: p_v_string => ' Change record is updated ' ||
269: ' Change_field_code : ' ||'LOAN_PER_BEGIN_DT' ||
270: ' Change record type: ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||

Line 273: igf_sl_clchsn_dtls_pkg.update_row

269: ' Change_field_code : ' ||'LOAN_PER_BEGIN_DT' ||
270: ' Change record type: ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||
271: ' Change code : ' ||'A - Loan Period Change '
272: );
273: igf_sl_clchsn_dtls_pkg.update_row
274: (
275: x_rowid => l_v_rowid ,
276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

272: );
273: igf_sl_clchsn_dtls_pkg.update_row
274: (
275: x_rowid => l_v_rowid ,
276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

273: igf_sl_clchsn_dtls_pkg.update_row
274: (
275: x_rowid => l_v_rowid ,
276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

274: (
275: x_rowid => l_v_rowid ,
276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

275: x_rowid => l_v_rowid ,
276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,

Line 280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

276: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

277: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

278: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
279: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

280: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

281: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,

Line 286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

282: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

283: x_status_code => 'R' ,
284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

284: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
285: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

286: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

287: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

288: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

289: x_new_date => l_d_loan_per_begin_date ,
290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

290: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

291: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

292: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

293: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

294: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

295: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

296: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

297: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

298: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

299: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

300: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

301: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

302: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

303: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

304: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
312: x_validation_edit_txt => NULL ,

Line 309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

305: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
312: x_validation_edit_txt => NULL ,
313: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

306: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
312: x_validation_edit_txt => NULL ,
313: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
314: );

Line 311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

307: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
308: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
312: x_validation_edit_txt => NULL ,
313: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
314: );
315: -- invoke validation edits to validate the change record. The validation checks if

Line 313: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

309: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
310: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
311: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
312: x_validation_edit_txt => NULL ,
313: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
314: );
315: -- invoke validation edits to validate the change record. The validation checks if
316: -- all the required fields are populated or not for a change record
317: log_to_fnd(p_v_module => 'create_loan_chg_rec ',

Line 318: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

314: );
315: -- invoke validation edits to validate the change record. The validation checks if
316: -- all the required fields are populated or not for a change record
317: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
318: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
319: );
320: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
321: p_b_return_status => l_b_return_status,
322: p_v_message_name => l_v_message_name,

Line 320: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

316: -- all the required fields are populated or not for a change record
317: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
318: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
319: );
320: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
321: p_b_return_status => l_b_return_status,
322: p_v_message_name => l_v_message_name,
323: p_t_message_tokens => l_d_message_tokens
324: );

Line 338: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

334: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
335: END LOOP;
336: */
337: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
338: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
339: );
340: log_to_fnd(p_v_module => 'create_loan_chg_rec',
341: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
342: );

Line 341: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

337: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
338: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
339: );
340: log_to_fnd(p_v_module => 'create_loan_chg_rec',
341: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
342: );
343: igf_sl_clchsn_dtls_pkg.update_row
344: (
345: x_rowid => l_v_rowid ,

Line 343: igf_sl_clchsn_dtls_pkg.update_row

339: );
340: log_to_fnd(p_v_module => 'create_loan_chg_rec',
341: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
342: );
343: igf_sl_clchsn_dtls_pkg.update_row
344: (
345: x_rowid => l_v_rowid ,
346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

342: );
343: igf_sl_clchsn_dtls_pkg.update_row
344: (
345: x_rowid => l_v_rowid ,
346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

343: igf_sl_clchsn_dtls_pkg.update_row
344: (
345: x_rowid => l_v_rowid ,
346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

344: (
345: x_rowid => l_v_rowid ,
346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

345: x_rowid => l_v_rowid ,
346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,

Line 350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

346: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

347: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

348: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
349: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

350: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

351: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,

Line 356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

352: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

353: x_status_code => 'N' ,
354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

354: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
355: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

356: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

357: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

358: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

359: x_new_date => l_d_loan_per_begin_date ,
360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

360: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

361: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

362: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

363: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

364: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

365: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

366: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

367: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

368: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

369: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

370: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

371: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

372: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

373: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

374: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
382: x_validation_edit_txt => fnd_message.get ,

Line 379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

375: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
382: x_validation_edit_txt => fnd_message.get ,
383: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

376: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
382: x_validation_edit_txt => fnd_message.get ,
383: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
384: );

Line 381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

377: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
378: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
382: x_validation_edit_txt => fnd_message.get ,
383: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
384: );
385: log_to_fnd(p_v_module => 'create_loan_chg_rec',

Line 383: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

379: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
380: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
381: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
382: x_validation_edit_txt => fnd_message.get ,
383: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
384: );
385: log_to_fnd(p_v_module => 'create_loan_chg_rec',
386: p_v_string => ' updated the status of change send record to Not Ready to Send'
387: );

Line 409: 'FROM igf_sl_clchsn_dtls chdt ' ||

405: ' change_field_code : ' ||'LOAN_PER_BEGIN_DT'
406: );
407: -- verify if the existing change record is to be deleted
408: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
409: 'FROM igf_sl_clchsn_dtls chdt ' ||
410: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
411: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
412: 'AND chdt.old_date = :cp_d_new_begin_dt ' ||
413: 'AND chdt.change_field_code = ''LOAN_PER_BEGIN_DT'' '||

Line 417: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_begin_date;

413: 'AND chdt.change_field_code = ''LOAN_PER_BEGIN_DT'' '||
414: 'AND chdt.change_code_txt = ''A'' ' ||
415: 'AND chdt.change_record_type_txt = ''07'' ';
416:
417: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_begin_date;
418: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
419: IF c_igf_sl_clchsn_dtls%FOUND THEN
420: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
421: p_v_string => ' Change record to be deleted ' ||

Line 418: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

414: 'AND chdt.change_code_txt = ''A'' ' ||
415: 'AND chdt.change_record_type_txt = ''07'' ';
416:
417: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_begin_date;
418: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
419: IF c_igf_sl_clchsn_dtls%FOUND THEN
420: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
421: p_v_string => ' Change record to be deleted ' ||
422: ' Award Id : ' ||l_n_award_id ||

Line 419: IF c_igf_sl_clchsn_dtls%FOUND THEN

415: 'AND chdt.change_record_type_txt = ''07'' ';
416:
417: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_begin_date;
418: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
419: IF c_igf_sl_clchsn_dtls%FOUND THEN
420: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
421: p_v_string => ' Change record to be deleted ' ||
422: ' Award Id : ' ||l_n_award_id ||
423: ' loan number : ' ||l_v_loan_number

Line 425: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

421: p_v_string => ' Change record to be deleted ' ||
422: ' Award Id : ' ||l_n_award_id ||
423: ' loan number : ' ||l_v_loan_number
424: );
425: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
426: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
427: p_v_string => ' Change record deleted successfully' ||
428: ' Award Id : ' ||l_n_award_id ||
429: ' loan number : ' ||l_v_loan_number

Line 432: CLOSE c_igf_sl_clchsn_dtls;

428: ' Award Id : ' ||l_n_award_id ||
429: ' loan number : ' ||l_v_loan_number
430: );
431: END IF;
432: CLOSE c_igf_sl_clchsn_dtls;
433: p_b_return_status := TRUE;
434: p_v_message_name := NULL;
435: END IF;
436: -- end of code logic for loan per begin date changes

Line 453: 'FROM igf_sl_clchsn_dtls chdt ' ||

449: ' change_field_code : ' ||'LOAN_PER_END_DT'
450: );
451: -- verify if the existing change record is to be updated or inserted
452: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
453: 'FROM igf_sl_clchsn_dtls chdt ' ||
454: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
455: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
456: 'AND chdt.old_date = :cp_d_resp_end_dt ' ||
457: 'AND chdt.change_field_code = ''LOAN_PER_END_DT'' '||

Line 460: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_end_dt;

456: 'AND chdt.old_date = :cp_d_resp_end_dt ' ||
457: 'AND chdt.change_field_code = ''LOAN_PER_END_DT'' '||
458: 'AND chdt.change_code_txt = ''A'' ' ||
459: 'AND chdt.change_record_type_txt = ''07'' ';
460: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_end_dt;
461: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
462: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
463: CLOSE c_igf_sl_clchsn_dtls;
464: l_v_rowid := NULL;

Line 461: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

457: 'AND chdt.change_field_code = ''LOAN_PER_END_DT'' '||
458: 'AND chdt.change_code_txt = ''A'' ' ||
459: 'AND chdt.change_record_type_txt = ''07'' ';
460: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_end_dt;
461: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
462: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
463: CLOSE c_igf_sl_clchsn_dtls;
464: l_v_rowid := NULL;
465: l_n_clchgsnd_id := NULL;

Line 462: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

458: 'AND chdt.change_code_txt = ''A'' ' ||
459: 'AND chdt.change_record_type_txt = ''07'' ';
460: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_end_dt;
461: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
462: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
463: CLOSE c_igf_sl_clchsn_dtls;
464: l_v_rowid := NULL;
465: l_n_clchgsnd_id := NULL;
466: log_to_fnd(p_v_module => 'create_loan_chg_rec ',

Line 463: CLOSE c_igf_sl_clchsn_dtls;

459: 'AND chdt.change_record_type_txt = ''07'' ';
460: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_res_loan_per_end_dt;
461: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
462: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
463: CLOSE c_igf_sl_clchsn_dtls;
464: l_v_rowid := NULL;
465: l_n_clchgsnd_id := NULL;
466: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
467: p_v_string => ' New Change record is Created' ||

Line 472: igf_sl_clchsn_dtls_pkg.insert_row

468: ' Change_field_code : ' ||'LOAN_PER_END_DT' ||
469: ' Change record type: ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||
470: ' Change code : ' ||'A - Loan Period Change '
471: );
472: igf_sl_clchsn_dtls_pkg.insert_row
473: (
474: x_rowid => l_v_rowid ,
475: x_clchgsnd_id => l_n_clchgsnd_id ,
476: x_award_id => p_new_loan_rec.award_id ,

Line 537: CLOSE c_igf_sl_clchsn_dtls;

533: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
534: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
535: );
536: ELSE
537: CLOSE c_igf_sl_clchsn_dtls;
538: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
539: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
540: p_v_string => ' Change record is updated ' ||
541: ' Change_field_code : ' ||'LOAN_PER_END_DT' ||

Line 538: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

534: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
535: );
536: ELSE
537: CLOSE c_igf_sl_clchsn_dtls;
538: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
539: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
540: p_v_string => ' Change record is updated ' ||
541: ' Change_field_code : ' ||'LOAN_PER_END_DT' ||
542: ' Change record type : ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||

Line 545: igf_sl_clchsn_dtls_pkg.update_row

541: ' Change_field_code : ' ||'LOAN_PER_END_DT' ||
542: ' Change record type : ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||
543: ' Change code : ' ||'A - Loan Period Change '
544: );
545: igf_sl_clchsn_dtls_pkg.update_row
546: (
547: x_rowid => l_v_rowid ,
548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

544: );
545: igf_sl_clchsn_dtls_pkg.update_row
546: (
547: x_rowid => l_v_rowid ,
548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

545: igf_sl_clchsn_dtls_pkg.update_row
546: (
547: x_rowid => l_v_rowid ,
548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

546: (
547: x_rowid => l_v_rowid ,
548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

547: x_rowid => l_v_rowid ,
548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,

Line 552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

548: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

549: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

550: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
551: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

552: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

553: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,

Line 558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

554: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

555: x_status_code => 'R' ,
556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

556: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
557: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

558: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

559: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

560: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

561: x_new_date => l_d_loan_per_end_date ,
562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

562: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

563: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

564: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

565: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

566: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

567: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

568: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

569: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

570: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

571: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

572: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

573: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

574: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

575: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

576: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
584: x_validation_edit_txt => NULL ,

Line 581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

577: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
584: x_validation_edit_txt => NULL ,
585: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

578: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
584: x_validation_edit_txt => NULL ,
585: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
586: );

Line 583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

579: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
580: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
584: x_validation_edit_txt => NULL ,
585: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
586: );
587: -- invoke validation edits to validate the change record. The validation checks if

Line 585: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

581: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
582: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
583: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
584: x_validation_edit_txt => NULL ,
585: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
586: );
587: -- invoke validation edits to validate the change record. The validation checks if
588: -- all the required fields are populated or not for a change record
589: log_to_fnd(p_v_module => 'create_loan_chg_rec ',

Line 590: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

586: );
587: -- invoke validation edits to validate the change record. The validation checks if
588: -- all the required fields are populated or not for a change record
589: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
590: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
591: );
592: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
593: p_b_return_status => l_b_return_status,
594: p_v_message_name => l_v_message_name,

Line 592: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

588: -- all the required fields are populated or not for a change record
589: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
590: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
591: );
592: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
593: p_b_return_status => l_b_return_status,
594: p_v_message_name => l_v_message_name,
595: p_t_message_tokens => l_d_message_tokens
596: );

Line 613: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

609: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
610: END LOOP;
611: */
612: log_to_fnd(p_v_module => 'create_loan_chg_rec',
613: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
614: );
615: igf_sl_clchsn_dtls_pkg.update_row
616: (
617: x_rowid => l_v_rowid ,

Line 615: igf_sl_clchsn_dtls_pkg.update_row

611: */
612: log_to_fnd(p_v_module => 'create_loan_chg_rec',
613: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
614: );
615: igf_sl_clchsn_dtls_pkg.update_row
616: (
617: x_rowid => l_v_rowid ,
618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

614: );
615: igf_sl_clchsn_dtls_pkg.update_row
616: (
617: x_rowid => l_v_rowid ,
618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

615: igf_sl_clchsn_dtls_pkg.update_row
616: (
617: x_rowid => l_v_rowid ,
618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

616: (
617: x_rowid => l_v_rowid ,
618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

617: x_rowid => l_v_rowid ,
618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,

Line 622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

618: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

619: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

620: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
621: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

622: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

623: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,

Line 628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

624: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

625: x_status_code => 'N' ,
626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

626: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
627: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

628: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

629: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

630: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

631: x_new_date => l_d_loan_per_end_date ,
632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

632: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

633: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

634: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

635: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

636: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

637: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

638: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

639: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

640: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

641: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

642: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

643: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

644: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

645: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

646: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
654: x_validation_edit_txt => fnd_message.get ,

Line 651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

647: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
654: x_validation_edit_txt => fnd_message.get ,
655: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

648: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
654: x_validation_edit_txt => fnd_message.get ,
655: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
656: );

Line 653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

649: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
650: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
654: x_validation_edit_txt => fnd_message.get ,
655: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
656: );
657: log_to_fnd(p_v_module => 'create_loan_chg_rec',

Line 655: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

651: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
652: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
653: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
654: x_validation_edit_txt => fnd_message.get ,
655: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
656: );
657: log_to_fnd(p_v_module => 'create_loan_chg_rec',
658: p_v_string => ' updated the status of change send record to Not Ready to Send'
659: );

Line 676: 'FROM igf_sl_clchsn_dtls chdt ' ||

672: ' new loan per end dt : ' ||l_d_loan_per_end_date ||
673: ' change_field_code : ' ||'LOAN_PER_END_DT'
674: );
675: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
676: 'FROM igf_sl_clchsn_dtls chdt ' ||
677: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
678: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
679: 'AND chdt.old_date = :cp_d_new_end_dt ' ||
680: 'AND chdt.change_field_code = ''LOAN_PER_END_DT'' '||

Line 683: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_end_date;

679: 'AND chdt.old_date = :cp_d_new_end_dt ' ||
680: 'AND chdt.change_field_code = ''LOAN_PER_END_DT'' '||
681: 'AND chdt.change_code_txt = ''A'' ' ||
682: 'AND chdt.change_record_type_txt = ''07'' ';
683: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_end_date;
684: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
685: IF c_igf_sl_clchsn_dtls%FOUND THEN
686: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
687: p_v_string => ' Change record to be deleted ' ||

Line 684: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

680: 'AND chdt.change_field_code = ''LOAN_PER_END_DT'' '||
681: 'AND chdt.change_code_txt = ''A'' ' ||
682: 'AND chdt.change_record_type_txt = ''07'' ';
683: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_end_date;
684: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
685: IF c_igf_sl_clchsn_dtls%FOUND THEN
686: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
687: p_v_string => ' Change record to be deleted ' ||
688: ' Award Id : ' ||l_n_award_id ||

Line 685: IF c_igf_sl_clchsn_dtls%FOUND THEN

681: 'AND chdt.change_code_txt = ''A'' ' ||
682: 'AND chdt.change_record_type_txt = ''07'' ';
683: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_loan_per_end_date;
684: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
685: IF c_igf_sl_clchsn_dtls%FOUND THEN
686: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
687: p_v_string => ' Change record to be deleted ' ||
688: ' Award Id : ' ||l_n_award_id ||
689: ' loan number : ' ||l_v_loan_number

Line 691: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

687: p_v_string => ' Change record to be deleted ' ||
688: ' Award Id : ' ||l_n_award_id ||
689: ' loan number : ' ||l_v_loan_number
690: );
691: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
692: log_to_fnd(p_v_module => 'create_loan_chg_rec ',
693: p_v_string => ' Change record deleted successfully ' ||
694: ' Award Id : ' ||l_n_award_id ||
695: ' loan number : ' ||l_v_loan_number

Line 698: CLOSE c_igf_sl_clchsn_dtls;

694: ' Award Id : ' ||l_n_award_id ||
695: ' loan number : ' ||l_v_loan_number
696: );
697: END IF;
698: CLOSE c_igf_sl_clchsn_dtls;
699: p_b_return_status := TRUE;
700: p_v_message_name := NULL;
701: END IF;
702: END IF;--end of if condition for checking if change record should be created or not

Line 778: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;

774: AND resp.cl_version_code = 'RELEASE-4'
775: ORDER BY clrp1_id DESC;
776:
777: TYPE ref_CurclchsnTyp IS REF CURSOR;
778: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
779:
780: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
781:
782: l_d_resp_anticip_compl_dt igf_sl_cl_resp_r1_all.anticip_compl_date%TYPE;

Line 780: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;

776:
777: TYPE ref_CurclchsnTyp IS REF CURSOR;
778: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
779:
780: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
781:
782: l_d_resp_anticip_compl_dt igf_sl_cl_resp_r1_all.anticip_compl_date%TYPE;
783: l_d_lor_anticip_compl_dt igf_sl_lor_all.anticip_compl_date%TYPE;
784: l_v_resp_grade_level_cd igf_sl_lor_all.override_grade_level_code%TYPE;

Line 788: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;

784: l_v_resp_grade_level_cd igf_sl_lor_all.override_grade_level_code%TYPE;
785: l_v_ovr_grade_level_cd igf_sl_lor_all.override_grade_level_code%TYPE;
786: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;
787: l_v_loan_status igf_sl_loans_all.loan_status%TYPE;
788: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;
789: l_v_sqlstmt VARCHAR2(32767);
790: l_v_rowid ROWID;
791: l_v_message_name fnd_new_messages.message_name%TYPE;
792: l_b_return_status BOOLEAN;

Line 887: 'FROM igf_sl_clchsn_dtls chdt ' ||

883: IF (l_d_resp_anticip_compl_dt <> l_d_lor_anticip_compl_dt)
884: THEN
885:
886: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
887: 'FROM igf_sl_clchsn_dtls chdt ' ||
888: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
889: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
890: 'AND chdt.old_date = :cp_d_resp_anticip_dt ' ||
891: 'AND chdt.change_field_code = ''ANTICIP_COML_DT'' ' ||

Line 894: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_resp_anticip_compl_dt;

890: 'AND chdt.old_date = :cp_d_resp_anticip_dt ' ||
891: 'AND chdt.change_field_code = ''ANTICIP_COML_DT'' ' ||
892: 'AND chdt.change_code_txt = ''C'' ' ||
893: 'AND chdt.change_record_type_txt = ''07'' ';
894: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_resp_anticip_compl_dt;
895: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
896: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
897: CLOSE c_igf_sl_clchsn_dtls;
898: l_v_rowid := NULL;

Line 895: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

891: 'AND chdt.change_field_code = ''ANTICIP_COML_DT'' ' ||
892: 'AND chdt.change_code_txt = ''C'' ' ||
893: 'AND chdt.change_record_type_txt = ''07'' ';
894: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_resp_anticip_compl_dt;
895: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
896: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
897: CLOSE c_igf_sl_clchsn_dtls;
898: l_v_rowid := NULL;
899: l_n_clchgsnd_id := NULL;

Line 896: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

892: 'AND chdt.change_code_txt = ''C'' ' ||
893: 'AND chdt.change_record_type_txt = ''07'' ';
894: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_resp_anticip_compl_dt;
895: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
896: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
897: CLOSE c_igf_sl_clchsn_dtls;
898: l_v_rowid := NULL;
899: l_n_clchgsnd_id := NULL;
900: log_to_fnd(p_v_module => 'create_lor_chg_rec ',

Line 897: CLOSE c_igf_sl_clchsn_dtls;

893: 'AND chdt.change_record_type_txt = ''07'' ';
894: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_resp_anticip_compl_dt;
895: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
896: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
897: CLOSE c_igf_sl_clchsn_dtls;
898: l_v_rowid := NULL;
899: l_n_clchgsnd_id := NULL;
900: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
901: p_v_string => ' New Change record is Created ' ||

Line 906: igf_sl_clchsn_dtls_pkg.insert_row

902: ' Change_field_code : ' ||'ANTICIP_COML_DT' ||
903: ' Change record type : ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||
904: ' Change code : ' ||'C - Anticipated Completion Date Change '
905: );
906: igf_sl_clchsn_dtls_pkg.insert_row
907: (
908: x_rowid => l_v_rowid ,
909: x_clchgsnd_id => l_n_clchgsnd_id ,
910: x_award_id => l_n_award_id ,

Line 968: CLOSE c_igf_sl_clchsn_dtls;

964: END IF;
965: p_b_return_status := TRUE;
966: p_v_message_name := NULL;
967: ELSE
968: CLOSE c_igf_sl_clchsn_dtls;
969: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
970: igf_sl_clchsn_dtls_pkg.update_row
971: (
972: x_rowid => l_v_rowid ,

Line 969: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

965: p_b_return_status := TRUE;
966: p_v_message_name := NULL;
967: ELSE
968: CLOSE c_igf_sl_clchsn_dtls;
969: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
970: igf_sl_clchsn_dtls_pkg.update_row
971: (
972: x_rowid => l_v_rowid ,
973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

Line 970: igf_sl_clchsn_dtls_pkg.update_row

966: p_v_message_name := NULL;
967: ELSE
968: CLOSE c_igf_sl_clchsn_dtls;
969: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
970: igf_sl_clchsn_dtls_pkg.update_row
971: (
972: x_rowid => l_v_rowid ,
973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

969: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
970: igf_sl_clchsn_dtls_pkg.update_row
971: (
972: x_rowid => l_v_rowid ,
973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

970: igf_sl_clchsn_dtls_pkg.update_row
971: (
972: x_rowid => l_v_rowid ,
973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

971: (
972: x_rowid => l_v_rowid ,
973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

972: x_rowid => l_v_rowid ,
973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,

Line 977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

973: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

974: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

975: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
976: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

977: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

978: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,

Line 983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

979: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

980: x_status_code => 'R' ,
981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

981: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
982: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

983: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

984: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

985: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

986: x_new_date => l_d_lor_anticip_compl_dt ,
987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

987: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

988: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

989: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

990: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

991: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

992: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

993: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

994: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

995: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

996: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

997: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

998: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

999: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

1000: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

1001: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1009: x_validation_edit_txt => NULL ,

Line 1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

1002: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1009: x_validation_edit_txt => NULL ,
1010: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

1003: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1009: x_validation_edit_txt => NULL ,
1010: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1011: );

Line 1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

1004: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1005: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1009: x_validation_edit_txt => NULL ,
1010: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1011: );
1012: -- invoke validation edits to validate the change record. The validation checks if

Line 1010: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

1006: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1007: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1008: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1009: x_validation_edit_txt => NULL ,
1010: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1011: );
1012: -- invoke validation edits to validate the change record. The validation checks if
1013: -- all the required fields are populated or not for a change record
1014: log_to_fnd(p_v_module => 'create_lor_chg_rec ',

Line 1017: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

1013: -- all the required fields are populated or not for a change record
1014: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1015: p_v_string => ' validating the Change record for Change send id: ' ||l_n_clchgsnd_id
1016: );
1017: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
1018: p_b_return_status => l_b_return_status,
1019: p_v_message_name => l_v_message_name,
1020: p_t_message_tokens => l_d_message_tokens
1021: );

Line 1038: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

1034: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
1035: END LOOP;
1036: */
1037: log_to_fnd(p_v_module => 'create_lor_chg_rec',
1038: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
1039: );
1040: igf_sl_clchsn_dtls_pkg.update_row
1041: (
1042: x_rowid => l_v_rowid ,

Line 1040: igf_sl_clchsn_dtls_pkg.update_row

1036: */
1037: log_to_fnd(p_v_module => 'create_lor_chg_rec',
1038: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
1039: );
1040: igf_sl_clchsn_dtls_pkg.update_row
1041: (
1042: x_rowid => l_v_rowid ,
1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

1039: );
1040: igf_sl_clchsn_dtls_pkg.update_row
1041: (
1042: x_rowid => l_v_rowid ,
1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

1040: igf_sl_clchsn_dtls_pkg.update_row
1041: (
1042: x_rowid => l_v_rowid ,
1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

1041: (
1042: x_rowid => l_v_rowid ,
1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

1042: x_rowid => l_v_rowid ,
1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,

Line 1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

1043: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

1044: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

1045: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1046: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

1047: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

1048: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,

Line 1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

1049: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

1050: x_status_code => 'N' ,
1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

1051: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1052: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

1053: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

1054: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

1055: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

1056: x_new_date => l_d_lor_anticip_compl_dt ,
1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

1057: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

1058: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

1059: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

1060: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

1061: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

1062: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

1063: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

1064: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

1065: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

1066: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

1067: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

1068: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

1069: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

1070: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

1071: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1079: x_validation_edit_txt => fnd_message.get ,

Line 1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

1072: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1079: x_validation_edit_txt => fnd_message.get ,
1080: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

1073: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1079: x_validation_edit_txt => fnd_message.get ,
1080: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1081: );

Line 1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

1074: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1075: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1079: x_validation_edit_txt => fnd_message.get ,
1080: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1081: );
1082: log_to_fnd(p_v_module => 'create_lor_chg_rec',

Line 1080: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

1076: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1077: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1078: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1079: x_validation_edit_txt => fnd_message.get ,
1080: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1081: );
1082: log_to_fnd(p_v_module => 'create_lor_chg_rec',
1083: p_v_string => ' updated the status of change send record to Not Ready to Send'
1084: );

Line 1105: 'FROM igf_sl_clchsn_dtls chdt ' ||

1101: ' new anticip compl date : ' ||l_d_lor_anticip_compl_dt ||
1102: ' change_field_code : ' ||'ANTICIP_COML_DT'
1103: );
1104: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
1105: 'FROM igf_sl_clchsn_dtls chdt ' ||
1106: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1107: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1108: 'AND chdt.old_date = :cp_d_new_anticip_dt ' ||
1109: 'AND chdt.change_field_code = ''ANTICIP_COML_DT'' ' ||

Line 1112: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_lor_anticip_compl_dt;

1108: 'AND chdt.old_date = :cp_d_new_anticip_dt ' ||
1109: 'AND chdt.change_field_code = ''ANTICIP_COML_DT'' ' ||
1110: 'AND chdt.change_code_txt = ''C'' ' ||
1111: 'AND chdt.change_record_type_txt = ''07'' ';
1112: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_lor_anticip_compl_dt;
1113: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1114: IF c_igf_sl_clchsn_dtls%FOUND THEN
1115: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1116: p_v_string => ' Change record to be deleted ' ||

Line 1113: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1109: 'AND chdt.change_field_code = ''ANTICIP_COML_DT'' ' ||
1110: 'AND chdt.change_code_txt = ''C'' ' ||
1111: 'AND chdt.change_record_type_txt = ''07'' ';
1112: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_lor_anticip_compl_dt;
1113: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1114: IF c_igf_sl_clchsn_dtls%FOUND THEN
1115: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1116: p_v_string => ' Change record to be deleted ' ||
1117: ' Award Id : ' || l_n_award_id ||

Line 1114: IF c_igf_sl_clchsn_dtls%FOUND THEN

1110: 'AND chdt.change_code_txt = ''C'' ' ||
1111: 'AND chdt.change_record_type_txt = ''07'' ';
1112: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_d_lor_anticip_compl_dt;
1113: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1114: IF c_igf_sl_clchsn_dtls%FOUND THEN
1115: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1116: p_v_string => ' Change record to be deleted ' ||
1117: ' Award Id : ' || l_n_award_id ||
1118: ' loan number : ' || l_v_loan_number

Line 1120: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

1116: p_v_string => ' Change record to be deleted ' ||
1117: ' Award Id : ' || l_n_award_id ||
1118: ' loan number : ' || l_v_loan_number
1119: );
1120: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
1121: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1122: p_v_string => ' Change record deleted successfully ' ||
1123: ' Award Id : ' || l_n_award_id ||
1124: ' loan number : ' || l_v_loan_number

Line 1127: CLOSE c_igf_sl_clchsn_dtls;

1123: ' Award Id : ' || l_n_award_id ||
1124: ' loan number : ' || l_v_loan_number
1125: );
1126: END IF;
1127: CLOSE c_igf_sl_clchsn_dtls;
1128: p_b_return_status := TRUE;
1129: p_v_message_name := NULL;
1130: END IF;
1131: -- end of code logic for anticip compl dt changes

Line 1148: 'FROM igf_sl_clchsn_dtls chdt ' ||

1144: ' change_field_code : ' ||'GRADE_LEVEL_CODE'
1145: );
1146: -- verify if the existing change record is to be updated or inserted
1147: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
1148: 'FROM igf_sl_clchsn_dtls chdt ' ||
1149: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1150: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1151: 'AND chdt.old_value_txt = :cp_v_resp_grade_lvl_cd ' ||
1152: 'AND chdt.change_field_code = ''GRADE_LEVEL_CODE'' ' ||

Line 1156: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_resp_grade_level_cd;

1152: 'AND chdt.change_field_code = ''GRADE_LEVEL_CODE'' ' ||
1153: 'AND chdt.change_code_txt = ''B'' ' ||
1154: 'AND chdt.change_record_type_txt = ''07'' ';
1155:
1156: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_resp_grade_level_cd;
1157: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1158: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1159: CLOSE c_igf_sl_clchsn_dtls;
1160: l_v_rowid := NULL;

Line 1157: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1153: 'AND chdt.change_code_txt = ''B'' ' ||
1154: 'AND chdt.change_record_type_txt = ''07'' ';
1155:
1156: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_resp_grade_level_cd;
1157: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1158: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1159: CLOSE c_igf_sl_clchsn_dtls;
1160: l_v_rowid := NULL;
1161: l_n_clchgsnd_id := NULL;

Line 1158: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

1154: 'AND chdt.change_record_type_txt = ''07'' ';
1155:
1156: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_resp_grade_level_cd;
1157: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1158: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1159: CLOSE c_igf_sl_clchsn_dtls;
1160: l_v_rowid := NULL;
1161: l_n_clchgsnd_id := NULL;
1162: log_to_fnd(p_v_module => 'create_lor_chg_rec ',

Line 1159: CLOSE c_igf_sl_clchsn_dtls;

1155:
1156: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_resp_grade_level_cd;
1157: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1158: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1159: CLOSE c_igf_sl_clchsn_dtls;
1160: l_v_rowid := NULL;
1161: l_n_clchgsnd_id := NULL;
1162: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1163: p_v_string => ' New Change record is Created ' ||

Line 1168: igf_sl_clchsn_dtls_pkg.insert_row

1164: ' Change_field_code : ' ||'GRADE_LEVEL_CODE' ||
1165: ' Change record type : ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change' ||
1166: ' Change code : ' ||'B - Grade Level Change '
1167: );
1168: igf_sl_clchsn_dtls_pkg.insert_row
1169: (
1170: x_rowid => l_v_rowid ,
1171: x_clchgsnd_id => l_n_clchgsnd_id ,
1172: x_award_id => l_n_award_id ,

Line 1233: CLOSE c_igf_sl_clchsn_dtls;

1229: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1230: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
1231: );
1232: ELSE
1233: CLOSE c_igf_sl_clchsn_dtls;
1234: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
1235: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1236: p_v_string => ' Change record is updated ' ||
1237: ' Change_field_code : ' ||'GRADE_LEVEL_CODE' ||

Line 1234: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

1230: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
1231: );
1232: ELSE
1233: CLOSE c_igf_sl_clchsn_dtls;
1234: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
1235: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1236: p_v_string => ' Change record is updated ' ||
1237: ' Change_field_code : ' ||'GRADE_LEVEL_CODE' ||
1238: ' Change record type : ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change'||

Line 1241: igf_sl_clchsn_dtls_pkg.update_row

1237: ' Change_field_code : ' ||'GRADE_LEVEL_CODE' ||
1238: ' Change record type : ' ||'07 - Loan Period/Grade Level/Anticipated Completion Date Change'||
1239: ' Change code : ' ||'B - Grade Level Change '
1240: );
1241: igf_sl_clchsn_dtls_pkg.update_row
1242: (
1243: x_rowid => l_v_rowid ,
1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

1240: );
1241: igf_sl_clchsn_dtls_pkg.update_row
1242: (
1243: x_rowid => l_v_rowid ,
1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

1241: igf_sl_clchsn_dtls_pkg.update_row
1242: (
1243: x_rowid => l_v_rowid ,
1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

1242: (
1243: x_rowid => l_v_rowid ,
1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

1243: x_rowid => l_v_rowid ,
1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,

Line 1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

1244: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,
1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

1245: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,
1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

1246: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1247: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,
1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

1248: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,
1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

1249: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,
1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

1250: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1251: x_status_code => 'R' ,
1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

1252: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

1253: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

1254: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

1255: x_new_value_txt => l_v_ovr_grade_level_cd ,
1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

1256: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

1257: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

1258: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

1259: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

1260: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

1261: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

1262: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

1263: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

1264: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

1265: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

1266: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

1267: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

1268: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

1269: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

1270: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

1271: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

1272: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1280: x_validation_edit_txt => NULL ,

Line 1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

1273: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1280: x_validation_edit_txt => NULL ,
1281: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

1274: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1280: x_validation_edit_txt => NULL ,
1281: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1282: );

Line 1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

1275: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1276: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1280: x_validation_edit_txt => NULL ,
1281: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1282: );
1283: -- invoke validation edits to validate the change record. The validation checks if

Line 1281: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

1277: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1278: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1279: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1280: x_validation_edit_txt => NULL ,
1281: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1282: );
1283: -- invoke validation edits to validate the change record. The validation checks if
1284: -- all the required fields are populated or not for a change record
1285: log_to_fnd(p_v_module => 'create_lor_chg_rec ',

Line 1286: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

1282: );
1283: -- invoke validation edits to validate the change record. The validation checks if
1284: -- all the required fields are populated or not for a change record
1285: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1286: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
1287: );
1288: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
1289: p_b_return_status => l_b_return_status,
1290: p_v_message_name => l_v_message_name,

Line 1288: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

1284: -- all the required fields are populated or not for a change record
1285: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1286: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
1287: );
1288: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
1289: p_b_return_status => l_b_return_status,
1290: p_v_message_name => l_v_message_name,
1291: p_t_message_tokens => l_d_message_tokens
1292: );

Line 1296: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

1292: );
1293:
1294: IF NOT(l_b_return_status) THEN
1295: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1296: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
1297: );
1298: -- substring of the out bound parameter l_v_message_name is carried
1299: -- out since it can expect either IGS OR IGF message
1300: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 1309: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

1305: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
1306: END LOOP;
1307: */
1308: log_to_fnd(p_v_module => 'create_lor_chg_rec',
1309: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
1310: );
1311: igf_sl_clchsn_dtls_pkg.update_row
1312: (
1313: x_rowid => l_v_rowid ,

Line 1311: igf_sl_clchsn_dtls_pkg.update_row

1307: */
1308: log_to_fnd(p_v_module => 'create_lor_chg_rec',
1309: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
1310: );
1311: igf_sl_clchsn_dtls_pkg.update_row
1312: (
1313: x_rowid => l_v_rowid ,
1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

1310: );
1311: igf_sl_clchsn_dtls_pkg.update_row
1312: (
1313: x_rowid => l_v_rowid ,
1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

1311: igf_sl_clchsn_dtls_pkg.update_row
1312: (
1313: x_rowid => l_v_rowid ,
1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

1312: (
1313: x_rowid => l_v_rowid ,
1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

1313: x_rowid => l_v_rowid ,
1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,

Line 1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

1314: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,
1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

1315: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,
1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

1316: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1317: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,
1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

1318: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,
1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

1319: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,
1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

1320: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1321: x_status_code => 'N' ,
1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

1322: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

1323: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

1324: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

1325: x_new_value_txt => l_v_ovr_grade_level_cd ,
1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

1326: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

1327: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

1328: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

1329: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

1330: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

1331: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

1332: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

1333: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

1334: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

1335: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

1336: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

1337: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

1338: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

1339: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

1340: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

1341: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

1342: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1350: x_validation_edit_txt => fnd_message.get ,

Line 1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

1343: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1350: x_validation_edit_txt => fnd_message.get ,
1351: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

1344: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1350: x_validation_edit_txt => fnd_message.get ,
1351: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1352: );

Line 1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

1345: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1346: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1350: x_validation_edit_txt => fnd_message.get ,
1351: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1352: );
1353: log_to_fnd(p_v_module => 'create_lor_chg_rec',

Line 1351: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

1347: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1348: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1349: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1350: x_validation_edit_txt => fnd_message.get ,
1351: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1352: );
1353: log_to_fnd(p_v_module => 'create_lor_chg_rec',
1354: p_v_string => ' updated the status of change send record to Not Ready to Send'
1355: );

Line 1374: 'FROM igf_sl_clchsn_dtls chdt ' ||

1370: ' new grade level cd : ' ||l_v_ovr_grade_level_cd ||
1371: ' change_field_code : ' ||'GRADE_LEVEL_CODE'
1372: );
1373: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
1374: 'FROM igf_sl_clchsn_dtls chdt ' ||
1375: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1376: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1377: 'AND chdt.old_value_txt = :cp_v_new_grade_lvl_cd ' ||
1378: 'AND chdt.change_field_code = ''GRADE_LEVEL_CODE'' ' ||

Line 1382: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_ovr_grade_level_cd;

1378: 'AND chdt.change_field_code = ''GRADE_LEVEL_CODE'' ' ||
1379: 'AND chdt.change_code_txt = ''B'' ' ||
1380: 'AND chdt.change_record_type_txt = ''07'' ';
1381:
1382: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_ovr_grade_level_cd;
1383: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1384: IF c_igf_sl_clchsn_dtls%FOUND THEN
1385: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1386: p_v_string => ' Change record to be deleted' ||

Line 1383: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1379: 'AND chdt.change_code_txt = ''B'' ' ||
1380: 'AND chdt.change_record_type_txt = ''07'' ';
1381:
1382: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_ovr_grade_level_cd;
1383: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1384: IF c_igf_sl_clchsn_dtls%FOUND THEN
1385: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1386: p_v_string => ' Change record to be deleted' ||
1387: ' Award Id : ' ||l_n_award_id ||

Line 1384: IF c_igf_sl_clchsn_dtls%FOUND THEN

1380: 'AND chdt.change_record_type_txt = ''07'' ';
1381:
1382: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_v_ovr_grade_level_cd;
1383: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1384: IF c_igf_sl_clchsn_dtls%FOUND THEN
1385: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1386: p_v_string => ' Change record to be deleted' ||
1387: ' Award Id : ' ||l_n_award_id ||
1388: ' loan number : ' ||l_v_loan_number

Line 1390: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

1386: p_v_string => ' Change record to be deleted' ||
1387: ' Award Id : ' ||l_n_award_id ||
1388: ' loan number : ' ||l_v_loan_number
1389: );
1390: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
1391: log_to_fnd(p_v_module => 'create_lor_chg_rec ',
1392: p_v_string => ' Change record deleted successfully' ||
1393: ' Award Id : ' ||l_n_award_id ||
1394: ' loan number : ' ||l_v_loan_number

Line 1397: CLOSE c_igf_sl_clchsn_dtls;

1393: ' Award Id : ' ||l_n_award_id ||
1394: ' loan number : ' ||l_v_loan_number
1395: );
1396: END IF;
1397: CLOSE c_igf_sl_clchsn_dtls;
1398: p_b_return_status := TRUE;
1399: p_v_message_name := NULL;
1400: END IF;
1401: -- end of code logic for grade level changes

Line 1491: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;

1487: AND resp.cl_version_code = 'RELEASE-4'
1488: ORDER BY clrp1_id DESC;
1489:
1490: TYPE ref_CurclchsnTyp IS REF CURSOR;
1491: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
1492: c_sl_clchsn_dtls ref_CurclchsnTyp;
1493:
1494: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
1495:

Line 1494: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;

1490: TYPE ref_CurclchsnTyp IS REF CURSOR;
1491: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
1492: c_sl_clchsn_dtls ref_CurclchsnTyp;
1493:
1494: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
1495:
1496: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;
1497: l_v_loan_status igf_sl_loans_all.loan_status%TYPE;
1498: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;

Line 1498: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;

1494: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
1495:
1496: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;
1497: l_v_loan_status igf_sl_loans_all.loan_status%TYPE;
1498: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;
1499: l_v_sqlstmt VARCHAR2(32767);
1500: l_v_rowid ROWID;
1501: l_v_message_name fnd_new_messages.message_name%TYPE;
1502: l_b_return_status BOOLEAN;

Line 1509: l_v_response_status_code igf_sl_clchsn_dtls.response_status_code%TYPE;

1505: l_n_award_id igf_aw_award_all.award_id%TYPE;
1506: l_v_loan_number igf_sl_loans_all.loan_number%TYPE;
1507: l_n_disb_num igf_aw_awd_disb_all.disb_num%TYPE;
1508: l_n_resp_guarantee_amt igf_sl_cl_resp_r1_all.guarantee_amt%TYPE;
1509: l_v_response_status_code igf_sl_clchsn_dtls.response_status_code%TYPE;
1510: l_v_status_code igf_sl_clchsn_dtls.status_code%TYPE;
1511:
1512: e_valid_edits EXCEPTION;
1513: e_resource_busy EXCEPTION;

Line 1510: l_v_status_code igf_sl_clchsn_dtls.status_code%TYPE;

1506: l_v_loan_number igf_sl_loans_all.loan_number%TYPE;
1507: l_n_disb_num igf_aw_awd_disb_all.disb_num%TYPE;
1508: l_n_resp_guarantee_amt igf_sl_cl_resp_r1_all.guarantee_amt%TYPE;
1509: l_v_response_status_code igf_sl_clchsn_dtls.response_status_code%TYPE;
1510: l_v_status_code igf_sl_clchsn_dtls.status_code%TYPE;
1511:
1512: e_valid_edits EXCEPTION;
1513: e_resource_busy EXCEPTION;
1514: l_d_message_tokens igf_sl_cl_chg_prc.token_tab%TYPE;

Line 1623: 'FROM igf_sl_clchsn_dtls chdt ' ||

1619: ' Change code : ' ||'A - Full Loan Cancellation '
1620: );
1621: -- verify if the existing change record is to be inserted or not
1622: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
1623: 'FROM igf_sl_clchsn_dtls chdt ' ||
1624: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1625: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1626: 'AND chdt.new_amt = 0 ' ||
1627: 'AND chdt.old_amt = :cp_n_old_amt ' ||

Line 1631: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;

1627: 'AND chdt.old_amt = :cp_n_old_amt ' ||
1628: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
1629: 'AND chdt.change_code_txt = ''A'' ' ||
1630: 'AND chdt.change_record_type_txt = ''08'' ';
1631: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1632: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1633: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1634: l_v_rowid := NULL;
1635: l_n_clchgsnd_id := NULL;

Line 1632: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1628: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
1629: 'AND chdt.change_code_txt = ''A'' ' ||
1630: 'AND chdt.change_record_type_txt = ''08'' ';
1631: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1632: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1633: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1634: l_v_rowid := NULL;
1635: l_n_clchgsnd_id := NULL;
1636: igf_sl_clchsn_dtls_pkg.insert_row

Line 1633: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

1629: 'AND chdt.change_code_txt = ''A'' ' ||
1630: 'AND chdt.change_record_type_txt = ''08'' ';
1631: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1632: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1633: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1634: l_v_rowid := NULL;
1635: l_n_clchgsnd_id := NULL;
1636: igf_sl_clchsn_dtls_pkg.insert_row
1637: (

Line 1636: igf_sl_clchsn_dtls_pkg.insert_row

1632: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1633: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1634: l_v_rowid := NULL;
1635: l_n_clchgsnd_id := NULL;
1636: igf_sl_clchsn_dtls_pkg.insert_row
1637: (
1638: x_rowid => l_v_rowid ,
1639: x_clchgsnd_id => l_n_clchgsnd_id ,
1640: x_award_id => l_n_award_id ,

Line 1700: CLOSE c_igf_sl_clchsn_dtls;

1696: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1697: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
1698: );
1699: END IF;
1700: CLOSE c_igf_sl_clchsn_dtls;
1701: END IF;
1702: -- if changes have been reverted back (i.e. reverting back to LC after fully reinstated record
1703: -- is created before sending to external processor)
1704:

Line 1707: 'FROM igf_sl_clchsn_dtls chdt ' ||

1703: -- is created before sending to external processor)
1704:
1705: -- verify if fullY reinstated record is to be deleted as award change is reverted back
1706: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
1707: 'FROM igf_sl_clchsn_dtls chdt ' ||
1708: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1709: 'AND chdt.old_amt = 0 ' ||
1710: 'AND chdt.new_amt = :cp_n_new_amt ' ||
1711: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||

Line 1716: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;

1712: 'AND chdt.change_code_txt = ''B'' ' ||
1713: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1714: 'AND chdt.change_record_type_txt = ''08'' ';
1715: l_v_rowid := NULL;
1716: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1717: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1718: IF c_igf_sl_clchsn_dtls%FOUND THEN
1719: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1720: p_v_string => ' fullY reinstated Change record to be deleted ' ||

Line 1717: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1713: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1714: 'AND chdt.change_record_type_txt = ''08'' ';
1715: l_v_rowid := NULL;
1716: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1717: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1718: IF c_igf_sl_clchsn_dtls%FOUND THEN
1719: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1720: p_v_string => ' fullY reinstated Change record to be deleted ' ||
1721: ' Award Id : ' ||l_n_award_id ||

Line 1718: IF c_igf_sl_clchsn_dtls%FOUND THEN

1714: 'AND chdt.change_record_type_txt = ''08'' ';
1715: l_v_rowid := NULL;
1716: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1717: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1718: IF c_igf_sl_clchsn_dtls%FOUND THEN
1719: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1720: p_v_string => ' fullY reinstated Change record to be deleted ' ||
1721: ' Award Id : ' ||l_n_award_id ||
1722: ' loan number : ' ||l_v_loan_number

Line 1724: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

1720: p_v_string => ' fullY reinstated Change record to be deleted ' ||
1721: ' Award Id : ' ||l_n_award_id ||
1722: ' loan number : ' ||l_v_loan_number
1723: );
1724: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
1725: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1726: p_v_string => ' Change record deleted successfully ' ||
1727: ' Award Id : ' ||l_n_award_id ||
1728: ' loan number : ' ||l_v_loan_number

Line 1731: CLOSE c_igf_sl_clchsn_dtls;

1727: ' Award Id : ' ||l_n_award_id ||
1728: ' loan number : ' ||l_v_loan_number
1729: );
1730: END IF;
1731: CLOSE c_igf_sl_clchsn_dtls;
1732: p_b_return_status := TRUE;
1733: p_v_message_name := NULL;
1734:
1735: -- verify if loan increase record is to be deleted as award change is reverted back

Line 1737: 'FROM igf_sl_clchsn_dtls chdt ' ||

1733: p_v_message_name := NULL;
1734:
1735: -- verify if loan increase record is to be deleted as award change is reverted back
1736: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
1737: 'FROM igf_sl_clchsn_dtls chdt ' ||
1738: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1739: 'AND chdt.old_amt = :cp_n_old_amt ' ||
1740: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
1741: 'AND chdt.change_code_txt = ''A'' ' ||

Line 1745: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;

1741: 'AND chdt.change_code_txt = ''A'' ' ||
1742: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1743: 'AND chdt.change_record_type_txt = ''24'' ';
1744: l_v_rowid := NULL;
1745: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1746: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1747: IF c_igf_sl_clchsn_dtls%FOUND THEN
1748: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1749: p_v_string => ' Loan Increase Change record to be deleted ' ||

Line 1746: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1742: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1743: 'AND chdt.change_record_type_txt = ''24'' ';
1744: l_v_rowid := NULL;
1745: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1746: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1747: IF c_igf_sl_clchsn_dtls%FOUND THEN
1748: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1749: p_v_string => ' Loan Increase Change record to be deleted ' ||
1750: ' Award Id : ' ||l_n_award_id ||

Line 1747: IF c_igf_sl_clchsn_dtls%FOUND THEN

1743: 'AND chdt.change_record_type_txt = ''24'' ';
1744: l_v_rowid := NULL;
1745: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1746: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1747: IF c_igf_sl_clchsn_dtls%FOUND THEN
1748: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1749: p_v_string => ' Loan Increase Change record to be deleted ' ||
1750: ' Award Id : ' ||l_n_award_id ||
1751: ' loan number : ' ||l_v_loan_number

Line 1753: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

1749: p_v_string => ' Loan Increase Change record to be deleted ' ||
1750: ' Award Id : ' ||l_n_award_id ||
1751: ' loan number : ' ||l_v_loan_number
1752: );
1753: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
1754: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1755: p_v_string => ' Change record deleted successfully ' ||
1756: ' Award Id : ' ||l_n_award_id ||
1757: ' loan number : ' ||l_v_loan_number

Line 1760: CLOSE c_igf_sl_clchsn_dtls;

1756: ' Award Id : ' ||l_n_award_id ||
1757: ' loan number : ' ||l_v_loan_number
1758: );
1759: END IF;
1760: CLOSE c_igf_sl_clchsn_dtls;
1761: p_b_return_status := TRUE;
1762: p_v_message_name := NULL;
1763:
1764: ELSIF (p_v_chg_type = 'RIDC') THEN

Line 1779: 'FROM igf_sl_clchsn_dtls chdt ' ||

1775: ' change_field_code : ' ||'AWARD_AMOUNT' ||
1776: ' chg_type : ' ||p_v_chg_type
1777: );
1778: l_v_sqlstmt := 'SELECT chdt.ROWID, chdt.response_status_code ' ||
1779: 'FROM igf_sl_clchsn_dtls chdt ' ||
1780: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1781: 'AND chdt.old_amt = :cp_n_old_amt ' ||
1782: 'AND chdt.new_amt = 0 ' ||
1783: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||

Line 1787: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;

1783: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
1784: 'AND chdt.change_code_txt = ''A'' ' ||
1785: 'AND chdt.change_record_type_txt = ''08'' ';
1786: l_v_rowid := NULL;
1787: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1788: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid, l_v_response_status_code;
1789: CLOSE c_igf_sl_clchsn_dtls;
1790: -- if record has been found
1791: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 1788: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid, l_v_response_status_code;

1784: 'AND chdt.change_code_txt = ''A'' ' ||
1785: 'AND chdt.change_record_type_txt = ''08'' ';
1786: l_v_rowid := NULL;
1787: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1788: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid, l_v_response_status_code;
1789: CLOSE c_igf_sl_clchsn_dtls;
1790: -- if record has been found
1791: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1792: p_v_string => ' response status code: ' ||l_v_response_status_code

Line 1789: CLOSE c_igf_sl_clchsn_dtls;

1785: 'AND chdt.change_record_type_txt = ''08'' ';
1786: l_v_rowid := NULL;
1787: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
1788: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid, l_v_response_status_code;
1789: CLOSE c_igf_sl_clchsn_dtls;
1790: -- if record has been found
1791: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1792: p_v_string => ' response status code: ' ||l_v_response_status_code
1793: );

Line 1819: 'FROM igf_sl_clchsn_dtls chdt ' ||

1815: ' change_code : ' ||'A - Loan Increase'
1816: );
1817: -- verify if loan increase record is to be deleted as award change is reverted back
1818: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
1819: 'FROM igf_sl_clchsn_dtls chdt ' ||
1820: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1821: 'AND chdt.old_amt = :cp_n_old_amt ' ||
1822: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
1823: 'AND chdt.change_code_txt = ''A'' ' ||

Line 1835: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

1831: p_v_string => ' Loan Increase Change record to be deleted ' ||
1832: ' Award Id : ' ||l_n_award_id ||
1833: ' loan number : ' ||l_v_loan_number
1834: );
1835: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
1836: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1837: p_v_string => ' Change record deleted successfully ' ||
1838: ' Award Id : ' ||l_n_award_id ||
1839: ' loan number : ' ||l_v_loan_number

Line 1861: 'FROM igf_sl_clchsn_dtls chdt ' ||

1857: ' change_code : ' ||'B - Full Loan Reinstatement'
1858: );
1859: -- verify if the reinstatement change record is to be updated or inserted
1860: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
1861: 'FROM igf_sl_clchsn_dtls chdt ' ||
1862: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
1863: 'AND chdt.old_amt = 0 ' ||
1864: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
1865: 'AND chdt.change_code_txt = ''B'' ' ||

Line 1869: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;

1865: 'AND chdt.change_code_txt = ''B'' ' ||
1866: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1867: 'AND chdt.change_record_type_txt = ''08'' ';
1868: l_v_rowid := NULL;
1869: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
1870: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1871: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1872: CLOSE c_igf_sl_clchsn_dtls;
1873: l_v_rowid := NULL;

Line 1870: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

1866: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
1867: 'AND chdt.change_record_type_txt = ''08'' ';
1868: l_v_rowid := NULL;
1869: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
1870: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1871: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1872: CLOSE c_igf_sl_clchsn_dtls;
1873: l_v_rowid := NULL;
1874: l_n_clchgsnd_id := NULL;

Line 1871: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

1867: 'AND chdt.change_record_type_txt = ''08'' ';
1868: l_v_rowid := NULL;
1869: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
1870: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1871: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1872: CLOSE c_igf_sl_clchsn_dtls;
1873: l_v_rowid := NULL;
1874: l_n_clchgsnd_id := NULL;
1875: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 1872: CLOSE c_igf_sl_clchsn_dtls;

1868: l_v_rowid := NULL;
1869: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
1870: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
1871: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
1872: CLOSE c_igf_sl_clchsn_dtls;
1873: l_v_rowid := NULL;
1874: l_n_clchgsnd_id := NULL;
1875: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1876: p_v_string => ' New Full Loan Reinstatement Change record is Created ' ||

Line 1881: igf_sl_clchsn_dtls_pkg.insert_row

1877: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
1878: ' Change record type : ' ||'08 - Loan Cancellation' ||
1879: ' change code : ' ||'B - Full Loan Reinstatement'
1880: );
1881: igf_sl_clchsn_dtls_pkg.insert_row
1882: (
1883: x_rowid => l_v_rowid ,
1884: x_clchgsnd_id => l_n_clchgsnd_id ,
1885: x_award_id => l_n_award_id ,

Line 1943: CLOSE c_igf_sl_clchsn_dtls;

1939: END IF;
1940: p_b_return_status := TRUE;
1941: p_v_message_name := NULL;
1942: ELSE
1943: CLOSE c_igf_sl_clchsn_dtls;
1944: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
1945: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1946: p_v_string => ' Change record is updated ' ||
1947: ' Change_field_code : ' ||'AWARD_AMOUNT' ||

Line 1944: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

1940: p_b_return_status := TRUE;
1941: p_v_message_name := NULL;
1942: ELSE
1943: CLOSE c_igf_sl_clchsn_dtls;
1944: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
1945: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1946: p_v_string => ' Change record is updated ' ||
1947: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
1948: ' Change record type : ' ||'08 - Loan Reinstatement'||

Line 1951: igf_sl_clchsn_dtls_pkg.update_row

1947: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
1948: ' Change record type : ' ||'08 - Loan Reinstatement'||
1949: ' Change code : ' ||'B - Loan Reinstatement '
1950: );
1951: igf_sl_clchsn_dtls_pkg.update_row
1952: (
1953: x_rowid => l_v_rowid ,
1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

1950: );
1951: igf_sl_clchsn_dtls_pkg.update_row
1952: (
1953: x_rowid => l_v_rowid ,
1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

1951: igf_sl_clchsn_dtls_pkg.update_row
1952: (
1953: x_rowid => l_v_rowid ,
1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

1952: (
1953: x_rowid => l_v_rowid ,
1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

1953: x_rowid => l_v_rowid ,
1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,

Line 1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

1954: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

1955: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

1956: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
1957: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

1958: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

1959: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

1960: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

1961: x_status_code => 'R' ,
1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,

Line 1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

1962: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

1963: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

1964: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
1965: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

1966: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

1967: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

1968: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

1969: x_new_amt => p_n_new_amount ,
1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

1970: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

1971: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

1972: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

1973: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

1974: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

1975: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

1976: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

1977: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

1978: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

1979: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

1980: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

1981: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

1982: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1990: x_validation_edit_txt => NULL ,

Line 1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

1983: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1990: x_validation_edit_txt => NULL ,
1991: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

1984: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1990: x_validation_edit_txt => NULL ,
1991: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1992: );

Line 1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

1985: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
1986: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1990: x_validation_edit_txt => NULL ,
1991: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1992: );
1993: -- invoke validation edits to validate the change record. The validation checks if

Line 1991: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

1987: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
1988: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
1989: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
1990: x_validation_edit_txt => NULL ,
1991: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
1992: );
1993: -- invoke validation edits to validate the change record. The validation checks if
1994: -- all the required fields are populated or not for a change record
1995: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 1996: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

1992: );
1993: -- invoke validation edits to validate the change record. The validation checks if
1994: -- all the required fields are populated or not for a change record
1995: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1996: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
1997: );
1998: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
1999: p_b_return_status => l_b_return_status,
2000: p_v_message_name => l_v_message_name,

Line 1998: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

1994: -- all the required fields are populated or not for a change record
1995: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
1996: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
1997: );
1998: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
1999: p_b_return_status => l_b_return_status,
2000: p_v_message_name => l_v_message_name,
2001: p_t_message_tokens => l_d_message_tokens
2002: );

Line 2005: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2001: p_t_message_tokens => l_d_message_tokens
2002: );
2003: IF NOT(l_b_return_status) THEN
2004: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2005: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2006: );
2007: -- substring of the out bound parameter l_v_message_name is carried
2008: -- out since it can expect either IGS OR IGF message
2009: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 2018: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

2014: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
2015: END LOOP;
2016: */
2017: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2018: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2019: );
2020: igf_sl_clchsn_dtls_pkg.update_row
2021: (
2022: x_rowid => l_v_rowid ,

Line 2020: igf_sl_clchsn_dtls_pkg.update_row

2016: */
2017: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2018: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2019: );
2020: igf_sl_clchsn_dtls_pkg.update_row
2021: (
2022: x_rowid => l_v_rowid ,
2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2019: );
2020: igf_sl_clchsn_dtls_pkg.update_row
2021: (
2022: x_rowid => l_v_rowid ,
2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2020: igf_sl_clchsn_dtls_pkg.update_row
2021: (
2022: x_rowid => l_v_rowid ,
2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2021: (
2022: x_rowid => l_v_rowid ,
2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2022: x_rowid => l_v_rowid ,
2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,

Line 2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2023: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2024: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2025: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2026: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2027: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2028: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2029: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2030: x_status_code => 'N' ,
2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,

Line 2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2031: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2032: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2033: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2034: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2035: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2036: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2037: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2038: x_new_amt => p_n_new_amount ,
2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2039: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2040: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2041: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2042: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2043: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2044: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2045: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2046: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2047: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2048: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2049: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2050: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2051: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2059: x_validation_edit_txt => fnd_message.get ,

Line 2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2052: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2059: x_validation_edit_txt => fnd_message.get ,
2060: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2053: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2059: x_validation_edit_txt => fnd_message.get ,
2060: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2061: );

Line 2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2054: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2055: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2059: x_validation_edit_txt => fnd_message.get ,
2060: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2061: );
2062: log_to_fnd(p_v_module => ' create_awd_chg_rec',

Line 2060: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2056: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2057: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2058: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2059: x_validation_edit_txt => fnd_message.get ,
2060: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2061: );
2062: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2063: p_v_string => ' updated the status of change send record to Not Ready to Send'
2064: );

Line 2077: 'FROM igf_sl_clchsn_dtls chdt ' ||

2073: -- we should create Loan Increase Record
2074: IF p_n_new_amount > l_n_resp_guarantee_amt THEN
2075: -- verify if the reinstatement change record is to be updated or inserted
2076: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
2077: 'FROM igf_sl_clchsn_dtls chdt ' ||
2078: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
2079: 'AND chdt.old_amt = 0 ' ||
2080: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
2081: 'AND chdt.change_code_txt = ''B'' ' ||

Line 2085: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;

2081: 'AND chdt.change_code_txt = ''B'' ' ||
2082: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
2083: 'AND chdt.change_record_type_txt = ''08'' ';
2084: l_v_rowid := NULL;
2085: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
2086: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2087: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
2088: CLOSE c_igf_sl_clchsn_dtls;
2089: l_v_rowid := NULL;

Line 2086: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

2082: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
2083: 'AND chdt.change_record_type_txt = ''08'' ';
2084: l_v_rowid := NULL;
2085: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
2086: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2087: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
2088: CLOSE c_igf_sl_clchsn_dtls;
2089: l_v_rowid := NULL;
2090: l_n_clchgsnd_id := NULL;

Line 2087: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

2083: 'AND chdt.change_record_type_txt = ''08'' ';
2084: l_v_rowid := NULL;
2085: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
2086: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2087: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
2088: CLOSE c_igf_sl_clchsn_dtls;
2089: l_v_rowid := NULL;
2090: l_n_clchgsnd_id := NULL;
2091: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 2088: CLOSE c_igf_sl_clchsn_dtls;

2084: l_v_rowid := NULL;
2085: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number;
2086: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2087: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
2088: CLOSE c_igf_sl_clchsn_dtls;
2089: l_v_rowid := NULL;
2090: l_n_clchgsnd_id := NULL;
2091: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2092: p_v_string => ' New Full Loan Reinstatement Change record is Created ' ||

Line 2097: igf_sl_clchsn_dtls_pkg.insert_row

2093: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2094: ' Change record type : ' ||'08 - Loan Cancellation' ||
2095: ' change code : ' ||'B - Full Loan Reinstatement'
2096: );
2097: igf_sl_clchsn_dtls_pkg.insert_row
2098: (
2099: x_rowid => l_v_rowid ,
2100: x_clchgsnd_id => l_n_clchgsnd_id ,
2101: x_award_id => l_n_award_id ,

Line 2159: CLOSE c_igf_sl_clchsn_dtls;

2155: END IF;
2156: p_b_return_status := TRUE;
2157: p_v_message_name := NULL;
2158: ELSE
2159: CLOSE c_igf_sl_clchsn_dtls;
2160: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
2161: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2162: p_v_string => ' Change record is updated ' ||
2163: ' Change_field_code : ' ||'AWARD_AMOUNT' ||

Line 2160: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

2156: p_b_return_status := TRUE;
2157: p_v_message_name := NULL;
2158: ELSE
2159: CLOSE c_igf_sl_clchsn_dtls;
2160: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
2161: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2162: p_v_string => ' Change record is updated ' ||
2163: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2164: ' Change record type : ' ||'08 - Loan Reinstatement'||

Line 2167: igf_sl_clchsn_dtls_pkg.update_row

2163: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2164: ' Change record type : ' ||'08 - Loan Reinstatement'||
2165: ' Change code : ' ||'B - Loan Reinstatement '
2166: );
2167: igf_sl_clchsn_dtls_pkg.update_row
2168: (
2169: x_rowid => l_v_rowid ,
2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2166: );
2167: igf_sl_clchsn_dtls_pkg.update_row
2168: (
2169: x_rowid => l_v_rowid ,
2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2167: igf_sl_clchsn_dtls_pkg.update_row
2168: (
2169: x_rowid => l_v_rowid ,
2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2168: (
2169: x_rowid => l_v_rowid ,
2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2169: x_rowid => l_v_rowid ,
2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,

Line 2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2170: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2171: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2172: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2173: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2174: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2175: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2176: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2177: x_status_code => 'R' ,
2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,

Line 2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2178: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2179: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2180: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2181: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2182: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2183: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2184: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2185: x_new_amt => l_n_resp_guarantee_amt ,
2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2186: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2187: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2188: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2189: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2190: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2191: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2192: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2193: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2194: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2195: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2196: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2197: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2198: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2206: x_validation_edit_txt => NULL ,

Line 2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2199: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2206: x_validation_edit_txt => NULL ,
2207: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2200: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2206: x_validation_edit_txt => NULL ,
2207: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2208: );

Line 2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2201: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2202: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2206: x_validation_edit_txt => NULL ,
2207: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2208: );
2209: -- invoke validation edits to validate the change record. The validation checks if

Line 2207: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2203: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2204: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2205: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2206: x_validation_edit_txt => NULL ,
2207: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2208: );
2209: -- invoke validation edits to validate the change record. The validation checks if
2210: -- all the required fields are populated or not for a change record
2211: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 2212: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2208: );
2209: -- invoke validation edits to validate the change record. The validation checks if
2210: -- all the required fields are populated or not for a change record
2211: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2212: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2213: );
2214: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
2215: p_b_return_status => l_b_return_status,
2216: p_v_message_name => l_v_message_name,

Line 2214: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

2210: -- all the required fields are populated or not for a change record
2211: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2212: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2213: );
2214: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
2215: p_b_return_status => l_b_return_status,
2216: p_v_message_name => l_v_message_name,
2217: p_t_message_tokens => l_d_message_tokens
2218: );

Line 2221: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2217: p_t_message_tokens => l_d_message_tokens
2218: );
2219: IF NOT(l_b_return_status) THEN
2220: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2221: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2222: );
2223: -- substring of the out bound parameter l_v_message_name is carried
2224: -- out since it can expect either IGS OR IGF message
2225: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 2234: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

2230: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
2231: END LOOP;
2232: */
2233: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2234: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2235: );
2236: igf_sl_clchsn_dtls_pkg.update_row
2237: (
2238: x_rowid => l_v_rowid ,

Line 2236: igf_sl_clchsn_dtls_pkg.update_row

2232: */
2233: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2234: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2235: );
2236: igf_sl_clchsn_dtls_pkg.update_row
2237: (
2238: x_rowid => l_v_rowid ,
2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2235: );
2236: igf_sl_clchsn_dtls_pkg.update_row
2237: (
2238: x_rowid => l_v_rowid ,
2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2236: igf_sl_clchsn_dtls_pkg.update_row
2237: (
2238: x_rowid => l_v_rowid ,
2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2237: (
2238: x_rowid => l_v_rowid ,
2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2238: x_rowid => l_v_rowid ,
2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,

Line 2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2239: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2240: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2241: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2242: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2243: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2244: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2245: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2246: x_status_code => 'N' ,
2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,

Line 2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2247: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2248: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2249: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2250: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2251: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2252: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2253: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2254: x_new_amt => l_n_resp_guarantee_amt ,
2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2255: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2256: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2257: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2258: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2259: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2260: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2261: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2262: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2263: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2264: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2265: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2266: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2267: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2275: x_validation_edit_txt => fnd_message.get ,

Line 2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2268: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2275: x_validation_edit_txt => fnd_message.get ,
2276: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2269: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2275: x_validation_edit_txt => fnd_message.get ,
2276: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2277: );

Line 2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2270: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2271: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2275: x_validation_edit_txt => fnd_message.get ,
2276: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2277: );
2278: log_to_fnd(p_v_module => ' create_awd_chg_rec',

Line 2276: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2272: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2273: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2274: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2275: x_validation_edit_txt => fnd_message.get ,
2276: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2277: );
2278: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2279: p_v_string => ' updated the status of change send record to Not Ready to Send'
2280: );

Line 2288: 'FROM igf_sl_clchsn_dtls chdt ' ||

2284: END IF;
2285:
2286: -- verify if loan increase record is to be created or updated
2287: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
2288: 'FROM igf_sl_clchsn_dtls chdt ' ||
2289: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
2290: 'AND chdt.old_amt = :cp_n_old_amt ' ||
2291: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
2292: 'AND chdt.change_code_txt = ''A'' ' ||

Line 2308: igf_sl_clchsn_dtls_pkg.insert_row

2304: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2305: ' Change record type : ' ||'24 - Loan Increase' ||
2306: ' change code : ' ||'A - Loan Increase '
2307: );
2308: igf_sl_clchsn_dtls_pkg.insert_row
2309: (
2310: x_rowid => l_v_rowid ,
2311: x_clchgsnd_id => l_n_clchgsnd_id ,
2312: x_award_id => l_n_award_id ,

Line 2373: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

2369: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
2370: );
2371: ELSE
2372: CLOSE c_sl_clchsn_dtls;
2373: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
2374: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2375: p_v_string => ' Change record is updated ' ||
2376: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2377: ' Change record type : ' ||'24 - Loan Increase'||

Line 2380: igf_sl_clchsn_dtls_pkg.update_row

2376: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2377: ' Change record type : ' ||'24 - Loan Increase'||
2378: ' Change code : ' ||'A - LOan Increase '
2379: );
2380: igf_sl_clchsn_dtls_pkg.update_row
2381: (
2382: x_rowid => l_v_rowid ,
2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2379: );
2380: igf_sl_clchsn_dtls_pkg.update_row
2381: (
2382: x_rowid => l_v_rowid ,
2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2380: igf_sl_clchsn_dtls_pkg.update_row
2381: (
2382: x_rowid => l_v_rowid ,
2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2381: (
2382: x_rowid => l_v_rowid ,
2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2382: x_rowid => l_v_rowid ,
2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,

Line 2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2383: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2384: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2385: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2386: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2387: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2388: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2389: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2390: x_status_code => 'R' ,
2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,

Line 2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2391: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2392: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2393: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2394: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2395: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2396: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2397: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2398: x_new_amt => p_n_new_amount ,
2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2399: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2400: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2401: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2402: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2403: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2404: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2405: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2406: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2407: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2408: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2409: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2410: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2411: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2419: x_validation_edit_txt => NULL ,

Line 2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2412: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2419: x_validation_edit_txt => NULL ,
2420: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2413: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2419: x_validation_edit_txt => NULL ,
2420: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2421: );

Line 2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2414: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2415: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2419: x_validation_edit_txt => NULL ,
2420: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2421: );
2422: -- invoke validation edits to validate the change record. The validation checks if

Line 2420: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2416: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2417: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2418: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2419: x_validation_edit_txt => NULL ,
2420: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2421: );
2422: -- invoke validation edits to validate the change record. The validation checks if
2423: -- all the required fields are populated or not for a change record
2424: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 2425: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2421: );
2422: -- invoke validation edits to validate the change record. The validation checks if
2423: -- all the required fields are populated or not for a change record
2424: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2425: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2426: );
2427: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
2428: p_b_return_status => l_b_return_status,
2429: p_v_message_name => l_v_message_name,

Line 2427: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

2423: -- all the required fields are populated or not for a change record
2424: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2425: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2426: );
2427: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
2428: p_b_return_status => l_b_return_status,
2429: p_v_message_name => l_v_message_name,
2430: p_t_message_tokens => l_d_message_tokens
2431: );

Line 2435: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2431: );
2432:
2433: IF NOT(l_b_return_status) THEN
2434: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2435: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2436: );
2437: -- substring of the out bound parameter l_v_message_name is carried
2438: -- out since it can expect either IGS OR IGF message
2439: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 2448: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

2444: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
2445: END LOOP;
2446: */
2447: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2448: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2449: );
2450: igf_sl_clchsn_dtls_pkg.update_row
2451: (
2452: x_rowid => l_v_rowid ,

Line 2450: igf_sl_clchsn_dtls_pkg.update_row

2446: */
2447: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2448: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2449: );
2450: igf_sl_clchsn_dtls_pkg.update_row
2451: (
2452: x_rowid => l_v_rowid ,
2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2449: );
2450: igf_sl_clchsn_dtls_pkg.update_row
2451: (
2452: x_rowid => l_v_rowid ,
2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2450: igf_sl_clchsn_dtls_pkg.update_row
2451: (
2452: x_rowid => l_v_rowid ,
2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2451: (
2452: x_rowid => l_v_rowid ,
2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2452: x_rowid => l_v_rowid ,
2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,

Line 2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2453: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2454: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2455: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2456: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2457: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2458: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2459: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2460: x_status_code => 'N' ,
2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,

Line 2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2461: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2462: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2463: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2464: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2465: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2466: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2467: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2468: x_new_amt => p_n_new_amount ,
2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2469: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2470: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2471: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2472: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2473: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2474: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2475: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2476: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2477: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2478: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2479: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2480: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2481: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2489: x_validation_edit_txt => fnd_message.get ,

Line 2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2482: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2489: x_validation_edit_txt => fnd_message.get ,
2490: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2483: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2489: x_validation_edit_txt => fnd_message.get ,
2490: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2491: );

Line 2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2484: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2485: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2489: x_validation_edit_txt => fnd_message.get ,
2490: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2491: );
2492: log_to_fnd(p_v_module => ' create_awd_chg_rec',

Line 2490: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2486: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2487: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2488: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2489: x_validation_edit_txt => fnd_message.get ,
2490: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2491: );
2492: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2493: p_v_string => ' updated the status of change send record to Not Ready to Send'
2494: );

Line 2506: 'FROM igf_sl_clchsn_dtls chdt ' ||

2502: -- hence just create loan increase record
2503: ELSIF l_v_response_status_code IS NULL THEN
2504: -- verify if full loan cancellation record to be deleted
2505: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
2506: 'FROM igf_sl_clchsn_dtls chdt ' ||
2507: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
2508: 'AND chdt.old_amt = :cp_n_old_amt ' ||
2509: 'AND chdt.new_amt = 0 ' ||
2510: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||

Line 2515: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;

2511: 'AND chdt.change_code_txt = ''A'' ' ||
2512: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
2513: 'AND chdt.change_record_type_txt = ''08'' ';
2514: l_v_rowid := NULL;
2515: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
2516: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2517: IF c_igf_sl_clchsn_dtls%FOUND THEN
2518: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2519: p_v_string => ' full loan cancellation Change record to be deleted ' ||

Line 2516: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

2512: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
2513: 'AND chdt.change_record_type_txt = ''08'' ';
2514: l_v_rowid := NULL;
2515: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
2516: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2517: IF c_igf_sl_clchsn_dtls%FOUND THEN
2518: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2519: p_v_string => ' full loan cancellation Change record to be deleted ' ||
2520: ' Award Id : ' ||l_n_award_id ||

Line 2517: IF c_igf_sl_clchsn_dtls%FOUND THEN

2513: 'AND chdt.change_record_type_txt = ''08'' ';
2514: l_v_rowid := NULL;
2515: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_v_loan_number,l_n_resp_guarantee_amt;
2516: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
2517: IF c_igf_sl_clchsn_dtls%FOUND THEN
2518: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2519: p_v_string => ' full loan cancellation Change record to be deleted ' ||
2520: ' Award Id : ' ||l_n_award_id ||
2521: ' loan number : ' ||l_v_loan_number

Line 2523: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

2519: p_v_string => ' full loan cancellation Change record to be deleted ' ||
2520: ' Award Id : ' ||l_n_award_id ||
2521: ' loan number : ' ||l_v_loan_number
2522: );
2523: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
2524: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2525: p_v_string => ' full loan cancellation Change record deleted successfully ' ||
2526: ' Award Id : ' ||l_n_award_id ||
2527: ' loan number : ' ||l_v_loan_number

Line 2530: CLOSE c_igf_sl_clchsn_dtls;

2526: ' Award Id : ' ||l_n_award_id ||
2527: ' loan number : ' ||l_v_loan_number
2528: );
2529: END IF;
2530: CLOSE c_igf_sl_clchsn_dtls;
2531: p_b_return_status := TRUE;
2532: p_v_message_name := NULL;
2533: IF p_n_new_amount > l_n_resp_guarantee_amt THEN
2534: -- verify if Loan Increase change record is to be inserted or not

Line 2549: 'FROM igf_sl_clchsn_dtls chdt ' ||

2545: ' Change record type : ' ||'24 - Loan Increase' ||
2546: ' change_code : ' ||'A - Loan Increase'
2547: );
2548: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
2549: 'FROM igf_sl_clchsn_dtls chdt ' ||
2550: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
2551: 'AND chdt.old_amt = :cp_n_old_amt ' ||
2552: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
2553: 'AND chdt.change_code_txt = ''A'' ' ||

Line 2569: igf_sl_clchsn_dtls_pkg.insert_row

2565: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2566: ' Change record type : ' ||'24 - Loan Increase' ||
2567: ' change code : ' ||'A - Loan Increase '
2568: );
2569: igf_sl_clchsn_dtls_pkg.insert_row
2570: (
2571: x_rowid => l_v_rowid ,
2572: x_clchgsnd_id => l_n_clchgsnd_id ,
2573: x_award_id => l_n_award_id ,

Line 2634: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

2630: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
2631: );
2632: ELSE
2633: CLOSE c_sl_clchsn_dtls;
2634: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
2635: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2636: p_v_string => ' Change record is updated ' ||
2637: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2638: ' Change record type : ' ||'24 - Loan Increase'||

Line 2641: igf_sl_clchsn_dtls_pkg.update_row

2637: ' Change_field_code : ' ||'AWARD_AMOUNT' ||
2638: ' Change record type : ' ||'24 - Loan Increase'||
2639: ' Change code : ' ||'A - LOan Increase '
2640: );
2641: igf_sl_clchsn_dtls_pkg.update_row
2642: (
2643: x_rowid => l_v_rowid ,
2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2640: );
2641: igf_sl_clchsn_dtls_pkg.update_row
2642: (
2643: x_rowid => l_v_rowid ,
2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2641: igf_sl_clchsn_dtls_pkg.update_row
2642: (
2643: x_rowid => l_v_rowid ,
2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2642: (
2643: x_rowid => l_v_rowid ,
2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2643: x_rowid => l_v_rowid ,
2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,

Line 2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2644: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2645: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2646: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2647: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2648: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2649: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2650: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2651: x_status_code => 'R' ,
2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,

Line 2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2652: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2653: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2654: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2655: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2656: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2657: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2658: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2659: x_new_amt => p_n_new_amount ,
2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2660: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2661: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2662: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2663: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2664: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2665: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2666: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2667: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2668: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2669: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2670: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2671: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2672: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2680: x_validation_edit_txt => NULL ,

Line 2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2673: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2680: x_validation_edit_txt => NULL ,
2681: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2674: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2680: x_validation_edit_txt => NULL ,
2681: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2682: );

Line 2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2675: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2676: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2680: x_validation_edit_txt => NULL ,
2681: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2682: );
2683: -- invoke validation edits to validate the change record. The validation checks if

Line 2681: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2677: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2678: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2679: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2680: x_validation_edit_txt => NULL ,
2681: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2682: );
2683: -- invoke validation edits to validate the change record. The validation checks if
2684: -- all the required fields are populated or not for a change record
2685: log_to_fnd(p_v_module => ' create_awd_chg_rec ',

Line 2686: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2682: );
2683: -- invoke validation edits to validate the change record. The validation checks if
2684: -- all the required fields are populated or not for a change record
2685: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2686: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2687: );
2688: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
2689: p_b_return_status => l_b_return_status,
2690: p_v_message_name => l_v_message_name,

Line 2688: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

2684: -- all the required fields are populated or not for a change record
2685: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2686: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2687: );
2688: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
2689: p_b_return_status => l_b_return_status,
2690: p_v_message_name => l_v_message_name,
2691: p_t_message_tokens => l_d_message_tokens
2692: );

Line 2695: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

2691: p_t_message_tokens => l_d_message_tokens
2692: );
2693: IF NOT(l_b_return_status) THEN
2694: log_to_fnd(p_v_module => ' create_awd_chg_rec ',
2695: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
2696: );
2697: -- substring of the out bound parameter l_v_message_name is carried
2698: -- out since it can expect either IGS OR IGF message
2699: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 2708: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

2704: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
2705: END LOOP;
2706: */
2707: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2708: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2709: );
2710: igf_sl_clchsn_dtls_pkg.update_row
2711: (
2712: x_rowid => l_v_rowid ,

Line 2710: igf_sl_clchsn_dtls_pkg.update_row

2706: */
2707: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2708: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
2709: );
2710: igf_sl_clchsn_dtls_pkg.update_row
2711: (
2712: x_rowid => l_v_rowid ,
2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

2709: );
2710: igf_sl_clchsn_dtls_pkg.update_row
2711: (
2712: x_rowid => l_v_rowid ,
2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

2710: igf_sl_clchsn_dtls_pkg.update_row
2711: (
2712: x_rowid => l_v_rowid ,
2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

2711: (
2712: x_rowid => l_v_rowid ,
2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

2712: x_rowid => l_v_rowid ,
2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,

Line 2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

2713: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

2714: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

2715: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
2716: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

2717: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

2718: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

2719: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

2720: x_status_code => 'N' ,
2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,

Line 2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

2721: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

2722: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

2723: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
2724: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

2725: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

2726: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

2727: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

2728: x_new_amt => p_n_new_amount ,
2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

2729: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

2730: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

2731: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

2732: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

2733: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

2734: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

2735: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

2736: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

2737: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

2738: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

2739: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

2740: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

2741: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2749: x_validation_edit_txt => fnd_message.get ,

Line 2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

2742: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2749: x_validation_edit_txt => fnd_message.get ,
2750: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

2743: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2749: x_validation_edit_txt => fnd_message.get ,
2750: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2751: );

Line 2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

2744: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
2745: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2749: x_validation_edit_txt => fnd_message.get ,
2750: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2751: );
2752: log_to_fnd(p_v_module => ' create_awd_chg_rec',

Line 2750: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

2746: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
2747: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
2748: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
2749: x_validation_edit_txt => fnd_message.get ,
2750: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
2751: );
2752: log_to_fnd(p_v_module => ' create_awd_chg_rec',
2753: p_v_string => ' updated the status of change send record to Not Ready to Send'
2754: );

Line 2775: 'FROM igf_sl_clchsn_dtls chdt ' ||

2771: ' change_code : ' ||'A - Loan Increase'
2772: );
2773: -- verify if the existing change record is to be deleted
2774: l_v_sqlstmt := 'SELECT chdt.ROWID ' ||
2775: 'FROM igf_sl_clchsn_dtls chdt ' ||
2776: 'WHERE chdt.loan_number_txt = :cp_v_loan_number ' ||
2777: 'AND chdt.old_amt = :cp_n_old_amt ' ||
2778: 'AND chdt.change_field_code = ''AWARD_AMOUNT'' ' ||
2779: 'AND chdt.change_code_txt = ''A'' ' ||

Line 2791: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

2787: p_v_string => ' @24 Change record to be deleted ' ||
2788: ' Award Id : ' ||l_n_award_id ||
2789: ' loan number : ' ||l_v_loan_number
2790: );
2791: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
2792: log_to_fnd(p_v_module => 'create_awd_chg_rec',
2793: p_v_string => ' @24 Change record deleted successfully' ||
2794: ' Award Id : ' ||l_n_award_id ||
2795: ' loan number : ' ||l_v_loan_number

Line 2889: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;

2885: AND resp_r8.clrp8_id = cp_n_disb_num
2886: ORDER BY resp_r1.clrp1_id DESC;
2887:
2888: TYPE ref_CurclchsnTyp IS REF CURSOR;
2889: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
2890:
2891: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
2892:
2893: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;

Line 2891: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;

2887:
2888: TYPE ref_CurclchsnTyp IS REF CURSOR;
2889: c_igf_sl_clchsn_dtls ref_CurclchsnTyp;
2890:
2891: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
2892:
2893: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;
2894: l_v_loan_status igf_sl_loans_all.loan_status%TYPE;
2895: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;

Line 2895: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;

2891: rec_c_igf_sl_clchsn_dtls igf_sl_clchsn_dtls%ROWTYPE;
2892:
2893: l_n_cl_version igf_sl_cl_setup_all.cl_version%TYPE;
2894: l_v_loan_status igf_sl_loans_all.loan_status%TYPE;
2895: l_n_clchgsnd_id igf_sl_clchsn_dtls.clchgsnd_id%TYPE;
2896: l_v_sqlstmt VARCHAR2(32767);
2897: l_v_rowid ROWID;
2898: l_v_message_name fnd_new_messages.message_name%TYPE;
2899: l_b_return_status BOOLEAN;

Line 2913: l_v_change_code_txt igf_sl_clchsn_dtls.change_code_txt%TYPE;

2909: l_n_new_disb_accepted_amt igf_aw_awd_disb_all.disb_accepted_amt%TYPE;
2910: l_d_new_disb_date igf_aw_awd_disb_all.disb_date%TYPE;
2911: l_c_new_hold_rel_ind igf_aw_awd_disb_all.hold_rel_ind%TYPE;
2912: l_v_new_change_type_code igf_aw_awd_disb_all.change_type_code%TYPE;
2913: l_v_change_code_txt igf_sl_clchsn_dtls.change_code_txt%TYPE;
2914: l_d_disb_cancel_dt igf_aw_awd_disb_all.disb_DATE%TYPE;
2915: l_n_disb_cancel_amt igf_aw_awd_disb_all.disb_gross_amt%TYPE;
2916: l_v_fund_return_mthd_code igf_aw_awd_disb_all.fund_return_mthd_code%TYPE;
2917:

Line 3024: 'FROM igf_sl_clchsn_dtls chdt ' ||

3020: ' change_field_code : '|| 'DISB_DATE'
3021: );
3022: -- verify if the existing change record is to be updated or inserted
3023: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3024: 'FROM igf_sl_clchsn_dtls chdt ' ||
3025: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3026: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3027: 'AND chdt.old_date = :cp_d_resp_disb_dt ' ||
3028: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 3033: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,TRUNC(l_d_resp_disb_date);

3029: 'AND chdt.change_code_txt = ''B'' ' ||
3030: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3031: 'AND chdt.change_record_type_txt = ''09'' ';
3032:
3033: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,TRUNC(l_d_resp_disb_date);
3034: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3035: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3036: CLOSE c_igf_sl_clchsn_dtls;
3037: l_v_rowid := NULL;

Line 3034: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3030: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3031: 'AND chdt.change_record_type_txt = ''09'' ';
3032:
3033: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,TRUNC(l_d_resp_disb_date);
3034: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3035: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3036: CLOSE c_igf_sl_clchsn_dtls;
3037: l_v_rowid := NULL;
3038: l_n_clchgsnd_id := NULL;

Line 3035: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

3031: 'AND chdt.change_record_type_txt = ''09'' ';
3032:
3033: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,TRUNC(l_d_resp_disb_date);
3034: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3035: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3036: CLOSE c_igf_sl_clchsn_dtls;
3037: l_v_rowid := NULL;
3038: l_n_clchgsnd_id := NULL;
3039: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 3036: CLOSE c_igf_sl_clchsn_dtls;

3032:
3033: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,TRUNC(l_d_resp_disb_date);
3034: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3035: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3036: CLOSE c_igf_sl_clchsn_dtls;
3037: l_v_rowid := NULL;
3038: l_n_clchgsnd_id := NULL;
3039: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3040: p_v_string => ' New Change record is Created ' ||

Line 3045: igf_sl_clchsn_dtls_pkg.insert_row

3041: ' Change_field_code : ' ||'DISB_DATE' ||
3042: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||
3043: ' Change code : ' ||'B - Disbursement Date Change '
3044: );
3045: igf_sl_clchsn_dtls_pkg.insert_row
3046: (
3047: x_rowid => l_v_rowid ,
3048: x_clchgsnd_id => l_n_clchgsnd_id ,
3049: x_award_id => l_n_award_id ,

Line 3109: CLOSE c_igf_sl_clchsn_dtls;

3105: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3106: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
3107: );
3108: ELSE
3109: CLOSE c_igf_sl_clchsn_dtls;
3110: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3111: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3112: p_v_string => ' Change record is updated ' ||
3113: ' Change_field_code : ' ||'DISB_DATE' ||

Line 3110: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

3106: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
3107: );
3108: ELSE
3109: CLOSE c_igf_sl_clchsn_dtls;
3110: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3111: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3112: p_v_string => ' Change record is updated ' ||
3113: ' Change_field_code : ' ||'DISB_DATE' ||
3114: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||

Line 3118: igf_sl_clchsn_dtls_pkg.update_row

3114: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||
3115: ' Change code : ' ||'B - Disbursement Date Change ' ||
3116: ' new disb date : ' || l_d_new_disb_date
3117: );
3118: igf_sl_clchsn_dtls_pkg.update_row
3119: (
3120: x_rowid => l_v_rowid ,
3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

3117: );
3118: igf_sl_clchsn_dtls_pkg.update_row
3119: (
3120: x_rowid => l_v_rowid ,
3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

3118: igf_sl_clchsn_dtls_pkg.update_row
3119: (
3120: x_rowid => l_v_rowid ,
3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

3119: (
3120: x_rowid => l_v_rowid ,
3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

3120: x_rowid => l_v_rowid ,
3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,

Line 3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

3121: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

3122: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

3123: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3124: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

3125: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

3126: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,

Line 3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

3127: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

3128: x_status_code => 'R' ,
3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

3129: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3130: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

3131: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

3132: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

3133: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

3134: x_new_date => l_d_new_disb_date ,
3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

3135: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

3136: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

3137: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

3138: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

3139: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

3140: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

3141: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

3142: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

3143: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

3144: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

3145: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

3146: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

3147: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

3148: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

3149: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3157: x_validation_edit_txt => NULL ,

Line 3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

3150: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3157: x_validation_edit_txt => NULL ,
3158: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

3151: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3157: x_validation_edit_txt => NULL ,
3158: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3159: );

Line 3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

3152: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3153: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3157: x_validation_edit_txt => NULL ,
3158: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3159: );
3160: -- invoke validation edits to validate the change record. The validation checks if

Line 3158: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

3154: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3155: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3156: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3157: x_validation_edit_txt => NULL ,
3158: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3159: );
3160: -- invoke validation edits to validate the change record. The validation checks if
3161: -- all the required fields are populated or not for a change record
3162: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 3163: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3159: );
3160: -- invoke validation edits to validate the change record. The validation checks if
3161: -- all the required fields are populated or not for a change record
3162: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3163: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3164: );
3165: l_v_message_name := NULL;
3166: l_b_return_status := TRUE;
3167: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 3167: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

3163: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3164: );
3165: l_v_message_name := NULL;
3166: l_b_return_status := TRUE;
3167: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
3168: p_b_return_status => l_b_return_status,
3169: p_v_message_name => l_v_message_name,
3170: p_t_message_tokens => l_d_message_tokens
3171: );

Line 3185: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3181: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
3182: END LOOP;
3183: */
3184: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3185: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3186: );
3187: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3188: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3189: );

Line 3188: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

3184: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3185: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3186: );
3187: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3188: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3189: );
3190: igf_sl_clchsn_dtls_pkg.update_row
3191: (
3192: x_rowid => l_v_rowid ,

Line 3190: igf_sl_clchsn_dtls_pkg.update_row

3186: );
3187: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3188: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3189: );
3190: igf_sl_clchsn_dtls_pkg.update_row
3191: (
3192: x_rowid => l_v_rowid ,
3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

3189: );
3190: igf_sl_clchsn_dtls_pkg.update_row
3191: (
3192: x_rowid => l_v_rowid ,
3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

3190: igf_sl_clchsn_dtls_pkg.update_row
3191: (
3192: x_rowid => l_v_rowid ,
3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

3191: (
3192: x_rowid => l_v_rowid ,
3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

3192: x_rowid => l_v_rowid ,
3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,

Line 3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

3193: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

3194: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

3195: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3196: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

3197: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

3198: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,

Line 3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

3199: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

3200: x_status_code => 'N' ,
3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

3201: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3202: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

3203: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

3204: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

3205: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

3206: x_new_date => l_d_new_disb_date ,
3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

3207: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

3208: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

3209: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

3210: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

3211: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

3212: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

3213: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

3214: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

3215: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

3216: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

3217: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

3218: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

3219: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

3220: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

3221: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3229: x_validation_edit_txt => fnd_message.get ,

Line 3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

3222: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3229: x_validation_edit_txt => fnd_message.get ,
3230: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

3223: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3229: x_validation_edit_txt => fnd_message.get ,
3230: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3231: );

Line 3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

3224: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3225: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3229: x_validation_edit_txt => fnd_message.get ,
3230: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3231: );
3232: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 3230: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

3226: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3227: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3228: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3229: x_validation_edit_txt => fnd_message.get ,
3230: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3231: );
3232: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3233: p_v_string => ' updated the status of change send record to Not Ready to Send'
3234: );

Line 3239: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3235: END IF;
3236: p_b_return_status := TRUE;
3237: p_v_message_name := NULL;
3238: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3239: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3240: );
3241: END IF;
3242: -- if changes have been reverted back
3243: ELSIF l_d_resp_disb_date = l_d_new_disb_date AND

Line 3260: 'FROM igf_sl_clchsn_dtls chdt ' ||

3256: ' change_field_code : ' || 'DISB_DATE'
3257: );
3258: -- verify if the existing change record is to be deleted
3259: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3260: 'FROM igf_sl_clchsn_dtls chdt ' ||
3261: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3262: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3263: 'AND chdt.old_date = :cp_d_new_disb_dt ' ||
3264: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 3269: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;

3265: 'AND chdt.change_code_txt = ''B'' ' ||
3266: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3267: 'AND chdt.change_record_type_txt = ''09'' ';
3268:
3269: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
3270: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3271: IF c_igf_sl_clchsn_dtls%FOUND THEN
3272: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3273: p_v_string => ' Change record to be deleted ' ||

Line 3270: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3266: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3267: 'AND chdt.change_record_type_txt = ''09'' ';
3268:
3269: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
3270: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3271: IF c_igf_sl_clchsn_dtls%FOUND THEN
3272: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3273: p_v_string => ' Change record to be deleted ' ||
3274: ' Award Id : '||l_n_award_id ||

Line 3271: IF c_igf_sl_clchsn_dtls%FOUND THEN

3267: 'AND chdt.change_record_type_txt = ''09'' ';
3268:
3269: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
3270: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3271: IF c_igf_sl_clchsn_dtls%FOUND THEN
3272: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3273: p_v_string => ' Change record to be deleted ' ||
3274: ' Award Id : '||l_n_award_id ||
3275: ' Disb Num : '||l_n_disb_num ||

Line 3278: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

3274: ' Award Id : '||l_n_award_id ||
3275: ' Disb Num : '||l_n_disb_num ||
3276: ' New disb Date: '||l_d_new_disb_date
3277: );
3278: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
3279: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3280: p_v_string => ' Change record deleted Successfully' ||
3281: ' Award Id : '||l_n_award_id ||
3282: ' Disb Num : '||l_n_disb_num ||

Line 3286: CLOSE c_igf_sl_clchsn_dtls;

3282: ' Disb Num : '||l_n_disb_num ||
3283: ' New disb Date: '||l_d_new_disb_date
3284: );
3285: END IF;
3286: CLOSE c_igf_sl_clchsn_dtls;
3287: p_b_return_status := TRUE;
3288: p_v_message_name := NULL;
3289: END IF;
3290: -- end of code logic for Change Type other than Reinstatement

Line 3309: 'FROM igf_sl_clchsn_dtls chdt ' ||

3305: ' change_field_code : '||'DISB_HOLD_REL_IND'
3306: );
3307: -- verify if the existing change record is to be updated or inserted
3308: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3309: 'FROM igf_sl_clchsn_dtls chdt ' ||
3310: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3311: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3312: 'AND chdt.old_value_txt = :cp_c_resp_hold_rel_ind ' ||
3313: 'AND chdt.change_field_code = ''DISB_HOLD_REL_IND'' ' ||

Line 3318: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_resp_hold_rel_ind;

3314: 'AND chdt.change_code_txt = ''E'' ' ||
3315: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3316: 'AND chdt.change_record_type_txt = ''09'' ';
3317:
3318: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_resp_hold_rel_ind;
3319: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3320: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3321: CLOSE c_igf_sl_clchsn_dtls;
3322: l_v_rowid := NULL;

Line 3319: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3315: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3316: 'AND chdt.change_record_type_txt = ''09'' ';
3317:
3318: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_resp_hold_rel_ind;
3319: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3320: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3321: CLOSE c_igf_sl_clchsn_dtls;
3322: l_v_rowid := NULL;
3323: l_n_clchgsnd_id := NULL;

Line 3320: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

3316: 'AND chdt.change_record_type_txt = ''09'' ';
3317:
3318: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_resp_hold_rel_ind;
3319: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3320: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3321: CLOSE c_igf_sl_clchsn_dtls;
3322: l_v_rowid := NULL;
3323: l_n_clchgsnd_id := NULL;
3324: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 3321: CLOSE c_igf_sl_clchsn_dtls;

3317:
3318: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_resp_hold_rel_ind;
3319: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3320: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3321: CLOSE c_igf_sl_clchsn_dtls;
3322: l_v_rowid := NULL;
3323: l_n_clchgsnd_id := NULL;
3324: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3325: p_v_string => ' New Change record is Created ' ||

Line 3330: igf_sl_clchsn_dtls_pkg.insert_row

3326: ' Change_field_code : ' ||'DISB_HOLD_REL_IND' ||
3327: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||
3328: ' Change code : ' ||'E - Disbursement Hold Release Change '
3329: );
3330: igf_sl_clchsn_dtls_pkg.insert_row
3331: (
3332: x_rowid => l_v_rowid ,
3333: x_clchgsnd_id => l_n_clchgsnd_id ,
3334: x_award_id => l_n_award_id ,

Line 3394: CLOSE c_igf_sl_clchsn_dtls;

3390: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3391: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
3392: );
3393: ELSE
3394: CLOSE c_igf_sl_clchsn_dtls;
3395: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3396: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3397: p_v_string => ' Change record is updated ' ||
3398: ' Change_field_code : ' ||'DISB_HOLD_REL_IND' ||

Line 3395: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

3391: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
3392: );
3393: ELSE
3394: CLOSE c_igf_sl_clchsn_dtls;
3395: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3396: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3397: p_v_string => ' Change record is updated ' ||
3398: ' Change_field_code : ' ||'DISB_HOLD_REL_IND' ||
3399: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||

Line 3403: igf_sl_clchsn_dtls_pkg.update_row

3399: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||
3400: ' Change code : ' ||'E - Disbursement Hold Release Change ' ||
3401: ' new hold release ind: ' || l_c_new_hold_rel_ind
3402: );
3403: igf_sl_clchsn_dtls_pkg.update_row
3404: (
3405: x_rowid => l_v_rowid,
3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

3402: );
3403: igf_sl_clchsn_dtls_pkg.update_row
3404: (
3405: x_rowid => l_v_rowid,
3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

3403: igf_sl_clchsn_dtls_pkg.update_row
3404: (
3405: x_rowid => l_v_rowid,
3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

3404: (
3405: x_rowid => l_v_rowid,
3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

3405: x_rowid => l_v_rowid,
3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,

Line 3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

3406: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,
3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

3407: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,
3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

3408: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3409: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,
3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

3410: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,
3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

3411: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,
3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

3412: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3413: x_status_code => 'R' ,
3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

3414: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

3415: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

3416: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

3417: x_new_value_txt => l_c_new_hold_rel_ind ,
3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

3418: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

3419: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

3420: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

3421: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

3422: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

3423: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

3424: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

3425: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

3426: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

3427: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

3428: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

3429: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

3430: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

3431: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

3432: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

3433: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

3434: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3442: x_validation_edit_txt => NULL ,

Line 3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

3435: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3442: x_validation_edit_txt => NULL ,
3443: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

3436: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3442: x_validation_edit_txt => NULL ,
3443: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3444: );

Line 3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

3437: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3438: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3442: x_validation_edit_txt => NULL ,
3443: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3444: );
3445: -- invoke validation edits to validate the change record. The validation checks if

Line 3443: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

3439: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3440: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3441: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3442: x_validation_edit_txt => NULL ,
3443: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3444: );
3445: -- invoke validation edits to validate the change record. The validation checks if
3446: -- all the required fields are populated or not for a change record
3447: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 3448: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3444: );
3445: -- invoke validation edits to validate the change record. The validation checks if
3446: -- all the required fields are populated or not for a change record
3447: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3448: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3449: );
3450: l_v_message_name := NULL;
3451: l_b_return_status := TRUE;
3452: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 3452: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

3448: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3449: );
3450: l_v_message_name := NULL;
3451: l_b_return_status := TRUE;
3452: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
3453: p_b_return_status => l_b_return_status,
3454: p_v_message_name => l_v_message_name,
3455: p_t_message_tokens => l_d_message_tokens
3456: );

Line 3470: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3466: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
3467: END LOOP;
3468: */
3469: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3470: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3471: );
3472: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3473: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3474: );

Line 3473: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

3469: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3470: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3471: );
3472: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3473: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3474: );
3475: igf_sl_clchsn_dtls_pkg.update_row
3476: (
3477: x_rowid => l_v_rowid ,

Line 3475: igf_sl_clchsn_dtls_pkg.update_row

3471: );
3472: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3473: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3474: );
3475: igf_sl_clchsn_dtls_pkg.update_row
3476: (
3477: x_rowid => l_v_rowid ,
3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

3474: );
3475: igf_sl_clchsn_dtls_pkg.update_row
3476: (
3477: x_rowid => l_v_rowid ,
3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

3475: igf_sl_clchsn_dtls_pkg.update_row
3476: (
3477: x_rowid => l_v_rowid ,
3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

3476: (
3477: x_rowid => l_v_rowid ,
3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

3477: x_rowid => l_v_rowid ,
3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,

Line 3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

3478: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,
3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

3479: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,
3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

3480: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3481: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,
3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

3482: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,
3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

3483: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,
3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

3484: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3485: x_status_code => 'N' ,
3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

3486: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

3487: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

3488: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

3489: x_new_value_txt => l_c_new_hold_rel_ind ,
3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

3490: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

3491: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

3492: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

3493: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

3494: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

3495: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

3496: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

3497: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

3498: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

3499: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

3500: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

3501: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

3502: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

3503: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

3504: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

3505: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

3506: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3514: x_validation_edit_txt => fnd_message.get ,

Line 3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

3507: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3514: x_validation_edit_txt => fnd_message.get ,
3515: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

3508: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3514: x_validation_edit_txt => fnd_message.get ,
3515: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3516: );

Line 3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

3509: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3510: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3514: x_validation_edit_txt => fnd_message.get ,
3515: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3516: );
3517: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 3515: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

3511: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3512: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3513: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3514: x_validation_edit_txt => fnd_message.get ,
3515: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3516: );
3517: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3518: p_v_string => ' updated the status of change send record to Not Ready to Send'
3519: );

Line 3524: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3520: END IF;
3521: p_b_return_status := TRUE;
3522: p_v_message_name := NULL;
3523: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3524: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3525: );
3526: END IF;
3527: -- if changes have been reverted back
3528: ELSIF l_c_resp_hold_rel_ind = l_c_new_hold_rel_ind THEN

Line 3543: 'FROM igf_sl_clchsn_dtls chdt ' ||

3539: ' change_field_code : '|| 'DISB_HOLD_REL_IND'
3540: );
3541: -- verify if the existing change record is to be deleted
3542: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3543: 'FROM igf_sl_clchsn_dtls chdt ' ||
3544: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3545: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3546: 'AND chdt.old_value_txt = :cp_c_new_hold_rel_ind ' ||
3547: 'AND chdt.change_field_code = ''DISB_HOLD_REL_IND'' ' ||

Line 3551: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_new_hold_rel_ind;

3547: 'AND chdt.change_field_code = ''DISB_HOLD_REL_IND'' ' ||
3548: 'AND chdt.change_code_txt = ''E'' ' ||
3549: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3550: 'AND chdt.change_record_type_txt = ''09'' ';
3551: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_new_hold_rel_ind;
3552: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3553: IF c_igf_sl_clchsn_dtls%FOUND THEN
3554: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3555: p_v_string => ' Change record to be deleted ' ||

Line 3552: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3548: 'AND chdt.change_code_txt = ''E'' ' ||
3549: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3550: 'AND chdt.change_record_type_txt = ''09'' ';
3551: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_new_hold_rel_ind;
3552: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3553: IF c_igf_sl_clchsn_dtls%FOUND THEN
3554: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3555: p_v_string => ' Change record to be deleted ' ||
3556: ' Award Id : '||l_n_award_id ||

Line 3553: IF c_igf_sl_clchsn_dtls%FOUND THEN

3549: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3550: 'AND chdt.change_record_type_txt = ''09'' ';
3551: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_c_new_hold_rel_ind;
3552: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3553: IF c_igf_sl_clchsn_dtls%FOUND THEN
3554: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3555: p_v_string => ' Change record to be deleted ' ||
3556: ' Award Id : '||l_n_award_id ||
3557: ' Disb Num : '||l_n_disb_num ||

Line 3560: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

3556: ' Award Id : '||l_n_award_id ||
3557: ' Disb Num : '||l_n_disb_num ||
3558: ' new hold release ind: '||l_c_new_hold_rel_ind
3559: );
3560: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
3561: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3562: p_v_string => ' Change record to be deleted successfully'||
3563: ' Award Id : '||l_n_award_id ||
3564: ' Disb Num : '||l_n_disb_num ||

Line 3568: CLOSE c_igf_sl_clchsn_dtls;

3564: ' Disb Num : '||l_n_disb_num ||
3565: ' new hold release ind: '||l_c_new_hold_rel_ind
3566: );
3567: END IF;
3568: CLOSE c_igf_sl_clchsn_dtls;
3569: p_b_return_status := TRUE;
3570: p_v_message_name := NULL;
3571: END IF;
3572: -- end of code logic for hold release indicator change

Line 3614: 'FROM igf_sl_clchsn_dtls chdt ' ||

3610: IF l_v_change_code_txt = 'ADI' THEN
3611: l_v_rowid := NULL;
3612: -- verify if the AI record is to be deleted
3613: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3614: 'FROM igf_sl_clchsn_dtls chdt ' ||
3615: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3616: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3617: 'AND chdt.old_amt = :cp_d_resp_disb_amt ' ||
3618: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 3622: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;

3618: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
3619: 'AND chdt.change_code_txt = ''AI'' ' ||
3620: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3621: 'AND chdt.change_record_type_txt = ''09'' ';
3622: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3623: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3624: IF c_igf_sl_clchsn_dtls%FOUND THEN
3625: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3626: p_v_string => ' Change record to be deleted' ||

Line 3623: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3619: 'AND chdt.change_code_txt = ''AI'' ' ||
3620: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3621: 'AND chdt.change_record_type_txt = ''09'' ';
3622: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3623: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3624: IF c_igf_sl_clchsn_dtls%FOUND THEN
3625: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3626: p_v_string => ' Change record to be deleted' ||
3627: ' Award Id : ' ||l_n_award_id ||

Line 3624: IF c_igf_sl_clchsn_dtls%FOUND THEN

3620: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3621: 'AND chdt.change_record_type_txt = ''09'' ';
3622: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3623: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3624: IF c_igf_sl_clchsn_dtls%FOUND THEN
3625: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3626: p_v_string => ' Change record to be deleted' ||
3627: ' Award Id : ' ||l_n_award_id ||
3628: ' loan number : ' ||l_v_loan_number||

Line 3632: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

3628: ' loan number : ' ||l_v_loan_number||
3629: ' Disb Number : ' ||l_n_disb_num ||
3630: ' change_code_txt : ' ||'AI'
3631: );
3632: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
3633: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3634: p_v_string => ' Change record deleted successfully ' ||
3635: ' Award Id : ' ||l_n_award_id ||
3636: ' loan number : ' ||l_v_loan_number||

Line 3641: CLOSE c_igf_sl_clchsn_dtls;

3637: ' Disb Number : ' ||l_n_disb_num ||
3638: ' change_code_txt : ' ||'AI'
3639: );
3640: END IF;
3641: CLOSE c_igf_sl_clchsn_dtls;
3642: p_b_return_status := TRUE;
3643: p_v_message_name := NULL;
3644: END IF;
3645: -- verify if the existing change record is to be updated or inserted

Line 3647: 'FROM igf_sl_clchsn_dtls chdt ' ||

3643: p_v_message_name := NULL;
3644: END IF;
3645: -- verify if the existing change record is to be updated or inserted
3646: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3647: 'FROM igf_sl_clchsn_dtls chdt ' ||
3648: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3649: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3650: 'AND chdt.old_amt = :cp_d_resp_disb_amt ' ||
3651: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 3655: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt,l_v_change_code_txt;

3651: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
3652: 'AND chdt.change_code_txt = :cp_change_code ' ||
3653: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3654: 'AND chdt.change_record_type_txt = ''09'' ';
3655: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt,l_v_change_code_txt;
3656: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3657: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3658: CLOSE c_igf_sl_clchsn_dtls;
3659: l_v_rowid := NULL;

Line 3656: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3652: 'AND chdt.change_code_txt = :cp_change_code ' ||
3653: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3654: 'AND chdt.change_record_type_txt = ''09'' ';
3655: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt,l_v_change_code_txt;
3656: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3657: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3658: CLOSE c_igf_sl_clchsn_dtls;
3659: l_v_rowid := NULL;
3660: l_n_clchgsnd_id := NULL;

Line 3657: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

3653: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3654: 'AND chdt.change_record_type_txt = ''09'' ';
3655: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt,l_v_change_code_txt;
3656: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3657: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3658: CLOSE c_igf_sl_clchsn_dtls;
3659: l_v_rowid := NULL;
3660: l_n_clchgsnd_id := NULL;
3661: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 3658: CLOSE c_igf_sl_clchsn_dtls;

3654: 'AND chdt.change_record_type_txt = ''09'' ';
3655: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt,l_v_change_code_txt;
3656: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3657: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3658: CLOSE c_igf_sl_clchsn_dtls;
3659: l_v_rowid := NULL;
3660: l_n_clchgsnd_id := NULL;
3661: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3662: p_v_string => ' New Change record is Created ' ||

Line 3667: igf_sl_clchsn_dtls_pkg.insert_row

3663: ' Change_field_code : ' ||'DISB_AMOUNT' ||
3664: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||
3665: ' Change code : ' ||l_v_change_code_txt
3666: );
3667: igf_sl_clchsn_dtls_pkg.insert_row
3668: (
3669: x_rowid => l_v_rowid ,
3670: x_clchgsnd_id => l_n_clchgsnd_id ,
3671: x_award_id => l_n_award_id ,

Line 3731: CLOSE c_igf_sl_clchsn_dtls;

3727: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3728: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
3729: );
3730: ELSE
3731: CLOSE c_igf_sl_clchsn_dtls;
3732: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3733: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3734: p_v_string => ' Change record is updated ' ||
3735: ' Change_field_code : ' ||'DISB_AMOUNT' ||

Line 3732: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

3728: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
3729: );
3730: ELSE
3731: CLOSE c_igf_sl_clchsn_dtls;
3732: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3733: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3734: p_v_string => ' Change record is updated ' ||
3735: ' Change_field_code : ' ||'DISB_AMOUNT' ||
3736: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||

Line 3740: l_d_disb_cancel_dt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ;

3736: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||
3737: ' Change code : ' ||l_v_change_code_txt ||
3738: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
3739: );
3740: l_d_disb_cancel_dt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ;
3741: l_n_disb_cancel_amt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ;
3742: IF rec_c_igf_sl_clchsn_dtls.change_code_txt = 'ADI' THEN
3743: l_d_disb_cancel_dt := TRUNC(SYSDATE);
3744: l_n_disb_cancel_amt := NVL((rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),0);

Line 3741: l_n_disb_cancel_amt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ;

3737: ' Change code : ' ||l_v_change_code_txt ||
3738: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
3739: );
3740: l_d_disb_cancel_dt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ;
3741: l_n_disb_cancel_amt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ;
3742: IF rec_c_igf_sl_clchsn_dtls.change_code_txt = 'ADI' THEN
3743: l_d_disb_cancel_dt := TRUNC(SYSDATE);
3744: l_n_disb_cancel_amt := NVL((rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),0);
3745: END IF;

Line 3742: IF rec_c_igf_sl_clchsn_dtls.change_code_txt = 'ADI' THEN

3738: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
3739: );
3740: l_d_disb_cancel_dt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ;
3741: l_n_disb_cancel_amt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ;
3742: IF rec_c_igf_sl_clchsn_dtls.change_code_txt = 'ADI' THEN
3743: l_d_disb_cancel_dt := TRUNC(SYSDATE);
3744: l_n_disb_cancel_amt := NVL((rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),0);
3745: END IF;
3746: igf_sl_clchsn_dtls_pkg.update_row

Line 3744: l_n_disb_cancel_amt := NVL((rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),0);

3740: l_d_disb_cancel_dt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ;
3741: l_n_disb_cancel_amt := rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ;
3742: IF rec_c_igf_sl_clchsn_dtls.change_code_txt = 'ADI' THEN
3743: l_d_disb_cancel_dt := TRUNC(SYSDATE);
3744: l_n_disb_cancel_amt := NVL((rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),0);
3745: END IF;
3746: igf_sl_clchsn_dtls_pkg.update_row
3747: (
3748: x_rowid => l_v_rowid ,

Line 3746: igf_sl_clchsn_dtls_pkg.update_row

3742: IF rec_c_igf_sl_clchsn_dtls.change_code_txt = 'ADI' THEN
3743: l_d_disb_cancel_dt := TRUNC(SYSDATE);
3744: l_n_disb_cancel_amt := NVL((rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),0);
3745: END IF;
3746: igf_sl_clchsn_dtls_pkg.update_row
3747: (
3748: x_rowid => l_v_rowid ,
3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

3745: END IF;
3746: igf_sl_clchsn_dtls_pkg.update_row
3747: (
3748: x_rowid => l_v_rowid ,
3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

3746: igf_sl_clchsn_dtls_pkg.update_row
3747: (
3748: x_rowid => l_v_rowid ,
3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

3747: (
3748: x_rowid => l_v_rowid ,
3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

3748: x_rowid => l_v_rowid ,
3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,

Line 3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

3749: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

3750: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

3751: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3752: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

3753: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

3754: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

3755: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

3756: x_status_code => 'R' ,
3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,

Line 3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

3757: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,
3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

3758: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,
3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3766: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

3759: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3760: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,
3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3766: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3767: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

3761: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,
3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3766: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3767: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3768: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3769: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,

Line 3766: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

3762: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,
3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3766: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3767: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3768: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3769: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3770: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 3767: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

3763: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3764: x_new_amt => l_n_new_disb_accepted_amt ,
3765: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3766: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3767: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3768: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3769: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3770: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

3767: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3768: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3769: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3770: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

3768: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3769: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3770: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

3769: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3770: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

3770: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

3771: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

3772: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

3773: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

3774: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

3775: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

3776: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

3777: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3785: x_validation_edit_txt => NULL ,

Line 3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

3778: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3785: x_validation_edit_txt => NULL ,
3786: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

3779: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3785: x_validation_edit_txt => NULL ,
3786: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3787: );

Line 3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

3780: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3781: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3785: x_validation_edit_txt => NULL ,
3786: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3787: );
3788: -- invoke validation edits to validate the change record. The validation checks if

Line 3786: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

3782: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3783: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3784: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3785: x_validation_edit_txt => NULL ,
3786: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3787: );
3788: -- invoke validation edits to validate the change record. The validation checks if
3789: -- all the required fields are populated or not for a change record
3790: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 3791: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3787: );
3788: -- invoke validation edits to validate the change record. The validation checks if
3789: -- all the required fields are populated or not for a change record
3790: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3791: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3792: );
3793: l_v_message_name := NULL;
3794: l_b_return_status := TRUE;
3795: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 3795: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

3791: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3792: );
3793: l_v_message_name := NULL;
3794: l_b_return_status := TRUE;
3795: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
3796: p_b_return_status => l_b_return_status,
3797: p_v_message_name => l_v_message_name,
3798: p_t_message_tokens => l_d_message_tokens
3799: );

Line 3803: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3799: );
3800:
3801: IF NOT(l_b_return_status) THEN
3802: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3803: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3804: );
3805: -- substring of the out bound parameter l_v_message_name is carried
3806: -- out since it can expect either IGS OR IGF message
3807: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 3816: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3812: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
3813: END LOOP;
3814: */
3815: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3816: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3817: );
3818: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3819: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3820: );

Line 3819: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

3815: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3816: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3817: );
3818: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3819: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3820: );
3821: igf_sl_clchsn_dtls_pkg.update_row
3822: (
3823: x_rowid => l_v_rowid ,

Line 3821: igf_sl_clchsn_dtls_pkg.update_row

3817: );
3818: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3819: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
3820: );
3821: igf_sl_clchsn_dtls_pkg.update_row
3822: (
3823: x_rowid => l_v_rowid ,
3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

3820: );
3821: igf_sl_clchsn_dtls_pkg.update_row
3822: (
3823: x_rowid => l_v_rowid ,
3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

3821: igf_sl_clchsn_dtls_pkg.update_row
3822: (
3823: x_rowid => l_v_rowid ,
3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

3822: (
3823: x_rowid => l_v_rowid ,
3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

3823: x_rowid => l_v_rowid ,
3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,

Line 3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

3824: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

3825: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

3826: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
3827: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

3828: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

3829: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

3830: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

3831: x_status_code => 'N' ,
3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,

Line 3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

3832: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,
3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

3833: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,
3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3841: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

3834: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
3835: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,
3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3841: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3842: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

3836: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,
3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3841: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3842: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3843: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3844: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,

Line 3841: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

3837: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,
3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3841: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3842: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3843: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3844: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3845: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 3842: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

3838: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
3839: x_new_amt => l_n_new_disb_accepted_amt ,
3840: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
3841: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
3842: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3843: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3844: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3845: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

3842: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
3843: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3844: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3845: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

3843: x_disbursement_cancel_date => l_d_disb_cancel_dt ,
3844: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3845: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

3844: x_disbursement_cancel_amt => l_n_disb_cancel_amt ,
3845: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

3845: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

3846: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

3847: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

3848: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

3849: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

3850: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

3851: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

3852: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3860: x_validation_edit_txt => fnd_message.get ,

Line 3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

3853: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3860: x_validation_edit_txt => fnd_message.get ,
3861: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

3854: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3860: x_validation_edit_txt => fnd_message.get ,
3861: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3862: );

Line 3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

3855: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
3856: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3860: x_validation_edit_txt => fnd_message.get ,
3861: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3862: );
3863: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 3861: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

3857: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
3858: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
3859: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
3860: x_validation_edit_txt => fnd_message.get ,
3861: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
3862: );
3863: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3864: p_v_string => ' updated the status of change send record to Not Ready to Send'
3865: );

Line 3870: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

3866: END IF;
3867: p_b_return_status := TRUE;
3868: p_v_message_name := NULL;
3869: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3870: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
3871: );
3872: END IF;
3873: -- if changes are reverted back
3874: ELSIF l_n_resp_disb_gross_amt = l_n_new_disb_accepted_amt AND

Line 3891: 'FROM igf_sl_clchsn_dtls chdt ' ||

3887: ' change_field_code : '||'DISB_AMOUNT'
3888: );
3889: -- verify if the existing change record is to be deleted
3890: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3891: 'FROM igf_sl_clchsn_dtls chdt ' ||
3892: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3893: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3894: 'AND chdt.old_amt = :cp_d_new_disb_amt ' ||
3895: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 3899: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;

3895: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
3896: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3897: 'AND chdt.change_record_type_txt = ''09'' ';
3898:
3899: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
3900: LOOP
3901: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3902: EXIT WHEN c_igf_sl_clchsn_dtls%NOTFOUND;
3903: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

Line 3901: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3897: 'AND chdt.change_record_type_txt = ''09'' ';
3898:
3899: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
3900: LOOP
3901: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3902: EXIT WHEN c_igf_sl_clchsn_dtls%NOTFOUND;
3903: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3904: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3905: p_v_string => ' Change record to be deleted ' ||

Line 3902: EXIT WHEN c_igf_sl_clchsn_dtls%NOTFOUND;

3898:
3899: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
3900: LOOP
3901: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3902: EXIT WHEN c_igf_sl_clchsn_dtls%NOTFOUND;
3903: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3904: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3905: p_v_string => ' Change record to be deleted ' ||
3906: ' Award Id : ' ||l_n_award_id ||

Line 3903: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

3899: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
3900: LOOP
3901: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3902: EXIT WHEN c_igf_sl_clchsn_dtls%NOTFOUND;
3903: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
3904: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3905: p_v_string => ' Change record to be deleted ' ||
3906: ' Award Id : ' ||l_n_award_id ||
3907: ' Disb Num : ' ||l_n_disb_num ||

Line 3908: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||

3904: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3905: p_v_string => ' Change record to be deleted ' ||
3906: ' Award Id : ' ||l_n_award_id ||
3907: ' Disb Num : ' ||l_n_disb_num ||
3908: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3909: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3910: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3911: );
3912: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

Line 3909: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||

3905: p_v_string => ' Change record to be deleted ' ||
3906: ' Award Id : ' ||l_n_award_id ||
3907: ' Disb Num : ' ||l_n_disb_num ||
3908: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3909: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3910: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3911: );
3912: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
3913: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 3910: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt

3906: ' Award Id : ' ||l_n_award_id ||
3907: ' Disb Num : ' ||l_n_disb_num ||
3908: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3909: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3910: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3911: );
3912: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
3913: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3914: p_v_string => ' Change record deleted successfully ' ||

Line 3912: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

3908: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3909: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3910: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3911: );
3912: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
3913: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3914: p_v_string => ' Change record deleted successfully ' ||
3915: ' Award Id : ' ||l_n_award_id ||
3916: ' Disb Num : ' ||l_n_disb_num ||

Line 3917: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||

3913: log_to_fnd(p_v_module => ' create_disb_chg_rec',
3914: p_v_string => ' Change record deleted successfully ' ||
3915: ' Award Id : ' ||l_n_award_id ||
3916: ' Disb Num : ' ||l_n_disb_num ||
3917: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3918: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3919: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3920: );
3921: END LOOP;

Line 3918: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||

3914: p_v_string => ' Change record deleted successfully ' ||
3915: ' Award Id : ' ||l_n_award_id ||
3916: ' Disb Num : ' ||l_n_disb_num ||
3917: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3918: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3919: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3920: );
3921: END LOOP;
3922: CLOSE c_igf_sl_clchsn_dtls;

Line 3919: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt

3915: ' Award Id : ' ||l_n_award_id ||
3916: ' Disb Num : ' ||l_n_disb_num ||
3917: ' Loan number : ' ||rec_c_igf_sl_clchsn_dtls.loan_number_txt ||
3918: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3919: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3920: );
3921: END LOOP;
3922: CLOSE c_igf_sl_clchsn_dtls;
3923: p_b_return_status := TRUE;

Line 3922: CLOSE c_igf_sl_clchsn_dtls;

3918: ' Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id ||
3919: ' Change Code : ' ||rec_c_igf_sl_clchsn_dtls.change_code_txt
3920: );
3921: END LOOP;
3922: CLOSE c_igf_sl_clchsn_dtls;
3923: p_b_return_status := TRUE;
3924: p_v_message_name := NULL;
3925: END IF;
3926: -- end of code logic for Change Type othet than Reinstatement

Line 3945: 'FROM igf_sl_clchsn_dtls chdt ' ||

3941: ' change_field_code : '||'DISB_AMOUNT'
3942: );
3943: -- verify if the existing change record is to be updated or inserted
3944: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
3945: 'FROM igf_sl_clchsn_dtls chdt ' ||
3946: 'WHERE chdt.award_id = :cp_n_award_id ' ||
3947: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
3948: 'AND chdt.old_amt = :cp_d_resp_disb_amt ' ||
3949: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 3954: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;

3950: 'AND chdt.change_code_txt = ''C'' ' ||
3951: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3952: 'AND chdt.change_record_type_txt = ''09'' ';
3953:
3954: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3955: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3956: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3957: CLOSE c_igf_sl_clchsn_dtls;
3958: l_v_rowid := NULL;

Line 3955: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

3951: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
3952: 'AND chdt.change_record_type_txt = ''09'' ';
3953:
3954: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3955: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3956: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3957: CLOSE c_igf_sl_clchsn_dtls;
3958: l_v_rowid := NULL;
3959: l_n_clchgsnd_id := NULL;

Line 3956: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

3952: 'AND chdt.change_record_type_txt = ''09'' ';
3953:
3954: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3955: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3956: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3957: CLOSE c_igf_sl_clchsn_dtls;
3958: l_v_rowid := NULL;
3959: l_n_clchgsnd_id := NULL;
3960: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 3957: CLOSE c_igf_sl_clchsn_dtls;

3953:
3954: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
3955: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
3956: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
3957: CLOSE c_igf_sl_clchsn_dtls;
3958: l_v_rowid := NULL;
3959: l_n_clchgsnd_id := NULL;
3960: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
3961: p_v_string => ' New Change record is Created ' ||

Line 3966: igf_sl_clchsn_dtls_pkg.insert_row

3962: ' Change_field_code : ' ||'DISB_AMOUNT' ||
3963: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||
3964: ' Change code : ' ||'C - Disbursement Reinstatement '
3965: );
3966: igf_sl_clchsn_dtls_pkg.insert_row
3967: (
3968: x_rowid => l_v_rowid ,
3969: x_clchgsnd_id => l_n_clchgsnd_id ,
3970: x_award_id => l_n_award_id ,

Line 4030: CLOSE c_igf_sl_clchsn_dtls;

4026: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4027: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4028: );
4029: ELSE
4030: CLOSE c_igf_sl_clchsn_dtls;
4031: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4032: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4033: p_v_string => ' Change record is updated ' ||
4034: ' Change_field_code : ' ||'DISB_AMOUNT' ||

Line 4031: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

4027: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4028: );
4029: ELSE
4030: CLOSE c_igf_sl_clchsn_dtls;
4031: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4032: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4033: p_v_string => ' Change record is updated ' ||
4034: ' Change_field_code : ' ||'DISB_AMOUNT' ||
4035: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||

Line 4039: igf_sl_clchsn_dtls_pkg.update_row

4035: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||
4036: ' Change code : ' ||'C - Disbursement Reinstatement ' ||
4037: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
4038: );
4039: igf_sl_clchsn_dtls_pkg.update_row
4040: (
4041: x_rowid => l_v_rowid ,
4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4038: );
4039: igf_sl_clchsn_dtls_pkg.update_row
4040: (
4041: x_rowid => l_v_rowid ,
4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4039: igf_sl_clchsn_dtls_pkg.update_row
4040: (
4041: x_rowid => l_v_rowid ,
4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4040: (
4041: x_rowid => l_v_rowid ,
4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4041: x_rowid => l_v_rowid ,
4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,

Line 4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4042: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4043: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4044: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4045: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4046: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4047: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4048: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4049: x_status_code => 'R' ,
4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,

Line 4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4050: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

4051: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4052: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4053: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4054: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4055: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4056: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4057: x_new_amt => l_n_new_disb_accepted_amt ,
4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4058: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4059: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

4060: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4061: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4062: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4063: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4064: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4065: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4066: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4067: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4068: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4069: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4070: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4078: x_validation_edit_txt => NULL ,

Line 4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4071: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4078: x_validation_edit_txt => NULL ,
4079: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4072: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4078: x_validation_edit_txt => NULL ,
4079: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4080: );

Line 4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4073: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4074: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4078: x_validation_edit_txt => NULL ,
4079: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4080: );
4081: -- invoke validation edits to validate the change record. The validation checks if

Line 4079: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4075: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4076: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4077: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4078: x_validation_edit_txt => NULL ,
4079: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4080: );
4081: -- invoke validation edits to validate the change record. The validation checks if
4082: -- all the required fields are populated or not for a change record
4083: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 4084: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4080: );
4081: -- invoke validation edits to validate the change record. The validation checks if
4082: -- all the required fields are populated or not for a change record
4083: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4084: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4085: );
4086: l_v_message_name := NULL;
4087: l_b_return_status := TRUE;
4088: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 4088: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

4084: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4085: );
4086: l_v_message_name := NULL;
4087: l_b_return_status := TRUE;
4088: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
4089: p_b_return_status => l_b_return_status,
4090: p_v_message_name => l_v_message_name,
4091: p_t_message_tokens => l_d_message_tokens
4092: );

Line 4096: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4092: );
4093:
4094: IF NOT(l_b_return_status) THEN
4095: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4096: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4097: );
4098: -- substring of the out bound parameter l_v_message_name is carried
4099: -- out since it can expect either IGS OR IGF message
4100: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 4109: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4105: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
4106: END LOOP;
4107: */
4108: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4109: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4110: );
4111: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4112: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4113: );

Line 4112: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

4108: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4109: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4110: );
4111: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4112: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4113: );
4114: igf_sl_clchsn_dtls_pkg.update_row
4115: (
4116: x_rowid => l_v_rowid ,

Line 4114: igf_sl_clchsn_dtls_pkg.update_row

4110: );
4111: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4112: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4113: );
4114: igf_sl_clchsn_dtls_pkg.update_row
4115: (
4116: x_rowid => l_v_rowid ,
4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4113: );
4114: igf_sl_clchsn_dtls_pkg.update_row
4115: (
4116: x_rowid => l_v_rowid ,
4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4114: igf_sl_clchsn_dtls_pkg.update_row
4115: (
4116: x_rowid => l_v_rowid ,
4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4115: (
4116: x_rowid => l_v_rowid ,
4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4116: x_rowid => l_v_rowid ,
4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,

Line 4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4117: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4118: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4119: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4120: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4121: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4122: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4123: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4124: x_status_code => 'N' ,
4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,

Line 4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4125: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

4126: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4127: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4128: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4129: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4130: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4131: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4132: x_new_amt => l_n_new_disb_accepted_amt ,
4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4133: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4134: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

4135: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4136: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4137: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4138: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4139: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4140: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4141: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4142: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4143: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4144: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4145: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4153: x_validation_edit_txt => NULL ,

Line 4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4146: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4153: x_validation_edit_txt => NULL ,
4154: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4147: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4153: x_validation_edit_txt => NULL ,
4154: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4155: );

Line 4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4148: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4149: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4153: x_validation_edit_txt => NULL ,
4154: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4155: );
4156: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 4154: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4150: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4151: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4152: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4153: x_validation_edit_txt => NULL ,
4154: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4155: );
4156: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4157: p_v_string => ' updated the status of change send record to Not Ready to Send'
4158: );

Line 4163: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4159: END IF;
4160: p_b_return_status := TRUE;
4161: p_v_message_name := NULL;
4162: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4163: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4164: );
4165: END IF;
4166: -- if changes are reverted back
4167: ELSIF l_n_resp_disb_gross_amt = l_n_new_disb_accepted_amt AND

Line 4184: 'FROM igf_sl_clchsn_dtls chdt ' ||

4180: ' change_field_code : '||'DISB_AMOUNT'
4181: );
4182: -- verify if the existing change record is to be deleted
4183: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
4184: 'FROM igf_sl_clchsn_dtls chdt ' ||
4185: 'WHERE chdt.award_id = :cp_n_award_id ' ||
4186: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
4187: 'AND chdt.old_amt = :cp_d_new_disb_amt ' ||
4188: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 4193: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;

4189: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4190: 'AND chdt.change_code_txt = ''C'' ' ||
4191: 'AND chdt.change_record_type_txt = ''09'' ';
4192:
4193: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
4194: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4195: IF c_igf_sl_clchsn_dtls%FOUND THEN
4196: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4197: p_v_string => ' Change record to be deleted ' ||

Line 4194: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

4190: 'AND chdt.change_code_txt = ''C'' ' ||
4191: 'AND chdt.change_record_type_txt = ''09'' ';
4192:
4193: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
4194: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4195: IF c_igf_sl_clchsn_dtls%FOUND THEN
4196: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4197: p_v_string => ' Change record to be deleted ' ||
4198: ' Award Id : '||l_n_award_id ||

Line 4195: IF c_igf_sl_clchsn_dtls%FOUND THEN

4191: 'AND chdt.change_record_type_txt = ''09'' ';
4192:
4193: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
4194: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4195: IF c_igf_sl_clchsn_dtls%FOUND THEN
4196: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4197: p_v_string => ' Change record to be deleted ' ||
4198: ' Award Id : '||l_n_award_id ||
4199: ' Disb Num : '||l_n_disb_num ||

Line 4202: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

4198: ' Award Id : '||l_n_award_id ||
4199: ' Disb Num : '||l_n_disb_num ||
4200: ' New disb Amount: '||l_n_new_disb_accepted_amt
4201: );
4202: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
4203: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4204: p_v_string => ' Change record to be deleted successfully' ||
4205: ' Award Id : '||l_n_award_id ||
4206: ' Disb Num : '||l_n_disb_num ||

Line 4210: CLOSE c_igf_sl_clchsn_dtls;

4206: ' Disb Num : '||l_n_disb_num ||
4207: ' New disb Amount: '||l_n_new_disb_accepted_amt
4208: );
4209: END IF;
4210: CLOSE c_igf_sl_clchsn_dtls;
4211: p_b_return_status := TRUE;
4212: p_v_message_name := NULL;
4213: END IF;
4214: -- end of code logic for Change Type = Reinstatement

Line 4236: 'FROM igf_sl_clchsn_dtls chdt ' ||

4232: ' change_field_code : '|| 'DISB_DATE'
4233: );
4234: -- verify if the existing change record is to be updated or inserted
4235: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
4236: 'FROM igf_sl_clchsn_dtls chdt ' ||
4237: 'WHERE chdt.award_id = :cp_n_award_id ' ||
4238: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
4239: 'AND chdt.old_date = :cp_d_resp_disb_dt ' ||
4240: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 4245: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;

4241: 'AND chdt.change_code_txt = ''C'' ' ||
4242: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4243: 'AND chdt.change_record_type_txt = ''09'' ';
4244:
4245: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
4246: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4247: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4248: CLOSE c_igf_sl_clchsn_dtls;
4249: l_v_rowid := NULL;

Line 4246: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

4242: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4243: 'AND chdt.change_record_type_txt = ''09'' ';
4244:
4245: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
4246: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4247: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4248: CLOSE c_igf_sl_clchsn_dtls;
4249: l_v_rowid := NULL;
4250: l_n_clchgsnd_id := NULL;

Line 4247: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

4243: 'AND chdt.change_record_type_txt = ''09'' ';
4244:
4245: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
4246: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4247: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4248: CLOSE c_igf_sl_clchsn_dtls;
4249: l_v_rowid := NULL;
4250: l_n_clchgsnd_id := NULL;
4251: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 4248: CLOSE c_igf_sl_clchsn_dtls;

4244:
4245: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
4246: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4247: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4248: CLOSE c_igf_sl_clchsn_dtls;
4249: l_v_rowid := NULL;
4250: l_n_clchgsnd_id := NULL;
4251: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4252: p_v_string => ' New Change record is Created ' ||

Line 4257: igf_sl_clchsn_dtls_pkg.insert_row

4253: ' Change_field_code : ' ||'DISB_DATE' ||
4254: ' Change record type : ' ||'09 - Disbursement Cancellation/Change' ||
4255: ' Change code : ' ||'C - Disbursement Reinstatement '
4256: );
4257: igf_sl_clchsn_dtls_pkg.insert_row
4258: (
4259: x_rowid => l_v_rowid ,
4260: x_clchgsnd_id => l_n_clchgsnd_id ,
4261: x_award_id => l_n_award_id ,

Line 4321: CLOSE c_igf_sl_clchsn_dtls;

4317: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4318: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4319: );
4320: ELSE
4321: CLOSE c_igf_sl_clchsn_dtls;
4322: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4323: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4324: p_v_string => ' Change record is updated ' ||
4325: ' Change_field_code : ' ||'DISB_DATE' ||

Line 4322: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

4318: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4319: );
4320: ELSE
4321: CLOSE c_igf_sl_clchsn_dtls;
4322: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4323: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4324: p_v_string => ' Change record is updated ' ||
4325: ' Change_field_code : ' ||'DISB_DATE' ||
4326: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||

Line 4330: igf_sl_clchsn_dtls_pkg.update_row

4326: ' Change record type: ' ||'09 - Disbursement Cancellation/Change' ||
4327: ' Change code : ' ||'B - Disbursement Date Change ' ||
4328: ' new disb date : ' || l_d_new_disb_date
4329: );
4330: igf_sl_clchsn_dtls_pkg.update_row
4331: (
4332: x_rowid => l_v_rowid ,
4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4329: );
4330: igf_sl_clchsn_dtls_pkg.update_row
4331: (
4332: x_rowid => l_v_rowid ,
4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4330: igf_sl_clchsn_dtls_pkg.update_row
4331: (
4332: x_rowid => l_v_rowid ,
4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4331: (
4332: x_rowid => l_v_rowid ,
4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4332: x_rowid => l_v_rowid ,
4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,

Line 4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4333: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4334: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4335: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4336: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4337: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4338: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,

Line 4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4339: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4340: x_status_code => 'R' ,
4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4341: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4342: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4343: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

4344: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4345: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4346: x_new_date => l_d_new_disb_date ,
4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4347: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4348: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4349: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

4350: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

4351: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4352: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4353: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4354: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4355: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4356: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4357: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4358: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4359: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4360: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4361: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4369: x_validation_edit_txt => NULL ,

Line 4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4362: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4369: x_validation_edit_txt => NULL ,
4370: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4363: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4369: x_validation_edit_txt => NULL ,
4370: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4371: );

Line 4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4364: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4365: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4369: x_validation_edit_txt => NULL ,
4370: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4371: );
4372: -- invoke validation edits to validate the change record. The validation checks if

Line 4370: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4366: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4367: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4368: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4369: x_validation_edit_txt => NULL ,
4370: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4371: );
4372: -- invoke validation edits to validate the change record. The validation checks if
4373: -- all the required fields are populated or not for a change record
4374: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 4375: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4371: );
4372: -- invoke validation edits to validate the change record. The validation checks if
4373: -- all the required fields are populated or not for a change record
4374: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4375: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4376: );
4377: l_v_message_name := NULL;
4378: l_b_return_status := TRUE;
4379: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 4379: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

4375: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4376: );
4377: l_v_message_name := NULL;
4378: l_b_return_status := TRUE;
4379: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
4380: p_b_return_status => l_b_return_status,
4381: p_v_message_name => l_v_message_name,
4382: p_t_message_tokens => l_d_message_tokens
4383: );

Line 4397: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4393: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
4394: END LOOP;
4395: */
4396: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4397: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4398: );
4399: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4400: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4401: );

Line 4400: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

4396: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4397: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4398: );
4399: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4400: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4401: );
4402: igf_sl_clchsn_dtls_pkg.update_row
4403: (
4404: x_rowid => l_v_rowid ,

Line 4402: igf_sl_clchsn_dtls_pkg.update_row

4398: );
4399: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4400: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4401: );
4402: igf_sl_clchsn_dtls_pkg.update_row
4403: (
4404: x_rowid => l_v_rowid ,
4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4401: );
4402: igf_sl_clchsn_dtls_pkg.update_row
4403: (
4404: x_rowid => l_v_rowid ,
4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4402: igf_sl_clchsn_dtls_pkg.update_row
4403: (
4404: x_rowid => l_v_rowid ,
4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4403: (
4404: x_rowid => l_v_rowid ,
4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4404: x_rowid => l_v_rowid ,
4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,

Line 4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4405: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4406: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4407: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4408: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4409: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4410: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,

Line 4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4411: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4412: x_status_code => 'N' ,
4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4413: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4414: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4415: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

4416: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4417: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4418: x_new_date => l_d_new_disb_date ,
4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4419: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4420: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4421: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

4422: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

4423: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4424: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4425: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4426: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4427: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4428: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4429: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4430: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4431: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4432: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4433: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4441: x_validation_edit_txt => fnd_message.get ,

Line 4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4434: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4441: x_validation_edit_txt => fnd_message.get ,
4442: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4435: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4441: x_validation_edit_txt => fnd_message.get ,
4442: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4443: );

Line 4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4436: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4437: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4441: x_validation_edit_txt => fnd_message.get ,
4442: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4443: );
4444: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 4442: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4438: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4439: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4440: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4441: x_validation_edit_txt => fnd_message.get ,
4442: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4443: );
4444: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4445: p_v_string => ' updated the status of change send record to Not Ready to Send'
4446: );

Line 4451: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4447: END IF;
4448: p_b_return_status := TRUE;
4449: p_v_message_name := NULL;
4450: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4451: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4452: );
4453: END IF;
4454: -- if changes have been reverted back
4455: ELSIF l_d_resp_disb_date = l_d_new_disb_date AND

Line 4472: 'FROM igf_sl_clchsn_dtls chdt ' ||

4468: ' change_field_code : ' || 'DISB_DATE'
4469: );
4470: -- verify if the existing change record is to be deleted
4471: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
4472: 'FROM igf_sl_clchsn_dtls chdt ' ||
4473: 'WHERE chdt.award_id = :cp_n_award_id ' ||
4474: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
4475: 'AND chdt.old_date = :cp_d_new_disb_dt ' ||
4476: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 4481: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;

4477: 'AND chdt.change_code_txt = ''C'' ' ||
4478: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4479: 'AND chdt.change_record_type_txt = ''09'' ';
4480:
4481: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
4482: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4483: IF c_igf_sl_clchsn_dtls%FOUND THEN
4484: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4485: p_v_string => ' Change record to be deleted ' ||

Line 4482: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

4478: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4479: 'AND chdt.change_record_type_txt = ''09'' ';
4480:
4481: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
4482: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4483: IF c_igf_sl_clchsn_dtls%FOUND THEN
4484: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4485: p_v_string => ' Change record to be deleted ' ||
4486: ' Award Id : '||l_n_award_id ||

Line 4483: IF c_igf_sl_clchsn_dtls%FOUND THEN

4479: 'AND chdt.change_record_type_txt = ''09'' ';
4480:
4481: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
4482: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4483: IF c_igf_sl_clchsn_dtls%FOUND THEN
4484: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4485: p_v_string => ' Change record to be deleted ' ||
4486: ' Award Id : '||l_n_award_id ||
4487: ' Disb Num : '||l_n_disb_num ||

Line 4490: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

4486: ' Award Id : '||l_n_award_id ||
4487: ' Disb Num : '||l_n_disb_num ||
4488: ' New disb Date: '||l_d_new_disb_date
4489: );
4490: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
4491: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4492: p_v_string => ' Change record deleted Successfully' ||
4493: ' Award Id : '||l_n_award_id ||
4494: ' Disb Num : '||l_n_disb_num ||

Line 4498: CLOSE c_igf_sl_clchsn_dtls;

4494: ' Disb Num : '||l_n_disb_num ||
4495: ' New disb Date: '||l_d_new_disb_date
4496: );
4497: END IF;
4498: CLOSE c_igf_sl_clchsn_dtls;
4499: p_b_return_status := TRUE;
4500: p_v_message_name := NULL;
4501: END IF;
4502: -- end of code logic for Change Type = Reinstatement

Line 4529: 'FROM igf_sl_clchsn_dtls chdt ' ||

4525: ' change_field_code : '||'DISB_AMOUNT'
4526: );
4527: -- verify if the existing change record is to be updated or inserted
4528: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
4529: 'FROM igf_sl_clchsn_dtls chdt ' ||
4530: 'WHERE chdt.award_id = :cp_n_award_id ' ||
4531: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
4532: 'AND chdt.old_amt = :cp_d_resp_disb_amt ' ||
4533: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 4538: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;

4534: 'AND chdt.change_code_txt = ''C'' ' ||
4535: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4536: 'AND chdt.change_record_type_txt = ''10'' ';
4537:
4538: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4539: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4540: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4541: CLOSE c_igf_sl_clchsn_dtls;
4542: l_v_rowid := NULL;

Line 4539: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

4535: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4536: 'AND chdt.change_record_type_txt = ''10'' ';
4537:
4538: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4539: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4540: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4541: CLOSE c_igf_sl_clchsn_dtls;
4542: l_v_rowid := NULL;
4543: l_n_clchgsnd_id := NULL;

Line 4540: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

4536: 'AND chdt.change_record_type_txt = ''10'' ';
4537:
4538: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4539: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4540: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4541: CLOSE c_igf_sl_clchsn_dtls;
4542: l_v_rowid := NULL;
4543: l_n_clchgsnd_id := NULL;
4544: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 4541: CLOSE c_igf_sl_clchsn_dtls;

4537:
4538: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4539: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4540: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4541: CLOSE c_igf_sl_clchsn_dtls;
4542: l_v_rowid := NULL;
4543: l_n_clchgsnd_id := NULL;
4544: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4545: p_v_string => ' New Change record is Created ' ||

Line 4550: igf_sl_clchsn_dtls_pkg.insert_row

4546: ' Change_field_code : ' ||'DISB_AMOUNT' ||
4547: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||
4548: ' Change code : ' ||'C-Full or Partial Reinstatement'
4549: );
4550: igf_sl_clchsn_dtls_pkg.insert_row
4551: (
4552: x_rowid => l_v_rowid ,
4553: x_clchgsnd_id => l_n_clchgsnd_id ,
4554: x_award_id => l_n_award_id ,

Line 4614: CLOSE c_igf_sl_clchsn_dtls;

4610: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4611: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4612: );
4613: ELSE
4614: CLOSE c_igf_sl_clchsn_dtls;
4615: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4616: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4617: p_v_string => ' Change record is updated ' ||
4618: ' Change_field_code : ' ||'DISB_AMOUNT' ||

Line 4615: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

4611: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4612: );
4613: ELSE
4614: CLOSE c_igf_sl_clchsn_dtls;
4615: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4616: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4617: p_v_string => ' Change record is updated ' ||
4618: ' Change_field_code : ' ||'DISB_AMOUNT' ||
4619: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||

Line 4623: igf_sl_clchsn_dtls_pkg.update_row

4619: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||
4620: ' Change code : ' ||'C-Full or Partial Reinstatement' ||
4621: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
4622: );
4623: igf_sl_clchsn_dtls_pkg.update_row
4624: (
4625: x_rowid => l_v_rowid ,
4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4622: );
4623: igf_sl_clchsn_dtls_pkg.update_row
4624: (
4625: x_rowid => l_v_rowid ,
4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4623: igf_sl_clchsn_dtls_pkg.update_row
4624: (
4625: x_rowid => l_v_rowid ,
4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4624: (
4625: x_rowid => l_v_rowid ,
4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4625: x_rowid => l_v_rowid ,
4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,

Line 4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4626: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4627: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4628: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4629: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4630: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4631: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4632: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4633: x_status_code => 'R' ,
4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,

Line 4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4634: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

4635: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4636: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4637: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4638: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4639: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4640: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4641: x_new_amt => l_n_new_disb_accepted_amt ,
4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4642: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4643: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

4644: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4645: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4646: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4647: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4648: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4649: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4650: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4651: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4652: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4653: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4654: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4662: x_validation_edit_txt => NULL ,

Line 4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4655: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4662: x_validation_edit_txt => NULL ,
4663: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4656: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4662: x_validation_edit_txt => NULL ,
4663: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4664: );

Line 4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4657: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4658: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4662: x_validation_edit_txt => NULL ,
4663: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4664: );
4665: -- invoke validation edits to validate the change record. The validation checks if

Line 4663: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4659: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4660: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4661: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4662: x_validation_edit_txt => NULL ,
4663: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4664: );
4665: -- invoke validation edits to validate the change record. The validation checks if
4666: -- all the required fields are populated or not for a change record
4667: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 4668: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4664: );
4665: -- invoke validation edits to validate the change record. The validation checks if
4666: -- all the required fields are populated or not for a change record
4667: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4668: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4669: );
4670: l_v_message_name := NULL;
4671: l_b_return_status := TRUE;
4672: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 4672: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

4668: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4669: );
4670: l_v_message_name := NULL;
4671: l_b_return_status := TRUE;
4672: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
4673: p_b_return_status => l_b_return_status,
4674: p_v_message_name => l_v_message_name,
4675: p_t_message_tokens => l_d_message_tokens
4676: );

Line 4680: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4676: );
4677:
4678: IF NOT(l_b_return_status) THEN
4679: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4680: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4681: );
4682: -- substring of the out bound parameter l_v_message_name is carried
4683: -- out since it can expect either IGS OR IGF message
4684: fnd_message.set_name(SUBSTR(l_v_message_name,1,3),l_v_message_name);

Line 4693: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4689: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
4690: END LOOP;
4691: */
4692: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4693: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4694: );
4695: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4696: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4697: );

Line 4696: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

4692: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4693: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4694: );
4695: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4696: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4697: );
4698: igf_sl_clchsn_dtls_pkg.update_row
4699: (
4700: x_rowid => l_v_rowid ,

Line 4698: igf_sl_clchsn_dtls_pkg.update_row

4694: );
4695: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4696: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4697: );
4698: igf_sl_clchsn_dtls_pkg.update_row
4699: (
4700: x_rowid => l_v_rowid ,
4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4697: );
4698: igf_sl_clchsn_dtls_pkg.update_row
4699: (
4700: x_rowid => l_v_rowid ,
4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4698: igf_sl_clchsn_dtls_pkg.update_row
4699: (
4700: x_rowid => l_v_rowid ,
4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4699: (
4700: x_rowid => l_v_rowid ,
4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4700: x_rowid => l_v_rowid ,
4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,

Line 4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4701: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4702: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4703: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4704: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4705: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4706: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

Line 4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4707: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4708: x_status_code => 'N' ,
4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,

Line 4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4709: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,

4710: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

Line 4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4711: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4712: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4713: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4714: x_new_date => rec_c_igf_sl_clchsn_dtls.new_date ,
4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4715: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

Line 4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4716: x_new_amt => l_n_new_disb_accepted_amt ,
4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4717: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4718: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,

4719: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

Line 4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4720: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4721: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4722: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4723: x_disbursement_revised_date => rec_c_igf_sl_clchsn_dtls.disbursement_revised_date ,
4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4724: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4725: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4726: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4727: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4728: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4729: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4737: x_validation_edit_txt => fnd_message.get ,

Line 4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4730: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4737: x_validation_edit_txt => fnd_message.get ,
4738: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4731: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4737: x_validation_edit_txt => fnd_message.get ,
4738: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4739: );

Line 4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4732: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4733: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4737: x_validation_edit_txt => fnd_message.get ,
4738: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4739: );
4740: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 4738: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4734: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4735: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4736: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4737: x_validation_edit_txt => fnd_message.get ,
4738: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4739: );
4740: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4741: p_v_string => ' updated the status of change send record to Not Ready to Send'
4742: );

Line 4747: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4743: END IF;
4744: p_b_return_status := TRUE;
4745: p_v_message_name := NULL;
4746: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4747: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4748: );
4749: END IF;
4750: -- changes are reverted back
4751: ELSIF l_n_resp_disb_gross_amt = l_n_new_disb_accepted_amt AND

Line 4768: 'FROM igf_sl_clchsn_dtls chdt ' ||

4764: ' change_field_code : '||'DISB_AMOUNT'
4765: );
4766: -- verify if the existing change record is to be deleted
4767: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
4768: 'FROM igf_sl_clchsn_dtls chdt ' ||
4769: 'WHERE chdt.award_id = :cp_n_award_id ' ||
4770: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
4771: 'AND chdt.old_amt = :cp_d_new_disb_amt ' ||
4772: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 4776: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;

4772: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
4773: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4774: 'AND chdt.change_code_txt = ''C'' ' ||
4775: 'AND chdt.change_record_type_txt = ''10'' ';
4776: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
4777: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4778: IF c_igf_sl_clchsn_dtls%FOUND THEN
4779: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4780: p_v_string => ' Change record to be deleted ' ||

Line 4777: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

4773: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4774: 'AND chdt.change_code_txt = ''C'' ' ||
4775: 'AND chdt.change_record_type_txt = ''10'' ';
4776: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
4777: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4778: IF c_igf_sl_clchsn_dtls%FOUND THEN
4779: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4780: p_v_string => ' Change record to be deleted ' ||
4781: ' Award Id : ' ||l_n_award_id ||

Line 4778: IF c_igf_sl_clchsn_dtls%FOUND THEN

4774: 'AND chdt.change_code_txt = ''C'' ' ||
4775: 'AND chdt.change_record_type_txt = ''10'' ';
4776: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
4777: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4778: IF c_igf_sl_clchsn_dtls%FOUND THEN
4779: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4780: p_v_string => ' Change record to be deleted ' ||
4781: ' Award Id : ' ||l_n_award_id ||
4782: ' Disb Num : ' ||l_n_disb_num ||

Line 4785: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

4781: ' Award Id : ' ||l_n_award_id ||
4782: ' Disb Num : ' ||l_n_disb_num ||
4783: ' new disb Amount: ' ||l_n_new_disb_accepted_amt
4784: );
4785: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
4786: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4787: p_v_string => ' Change record to be deleted succesfully' ||
4788: ' Award Id : ' ||l_n_award_id ||
4789: ' Disb Num : ' ||l_n_disb_num ||

Line 4793: CLOSE c_igf_sl_clchsn_dtls;

4789: ' Disb Num : ' ||l_n_disb_num ||
4790: ' new disb Amount: ' ||l_n_new_disb_accepted_amt
4791: );
4792: END IF;
4793: CLOSE c_igf_sl_clchsn_dtls;
4794: p_b_return_status := TRUE;
4795: p_v_message_name := NULL;
4796: END IF;
4797: -- end of code logic for disbursement amount change

Line 4819: 'FROM igf_sl_clchsn_dtls chdt ' ||

4815: ' change_field_code : '||'DISB_AMOUNT'
4816: );
4817: -- verify if the existing change record is to be updated or inserted
4818: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
4819: 'FROM igf_sl_clchsn_dtls chdt ' ||
4820: 'WHERE chdt.award_id = :cp_n_award_id ' ||
4821: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
4822: 'AND chdt.old_amt = :cp_d_resp_disb_amt ' ||
4823: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 4827: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;

4823: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
4824: 'AND chdt.change_code_txt = ''B'' ' ||
4825: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4826: 'AND chdt.change_record_type_txt = ''10'' ';
4827: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4828: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4829: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4830:
4831: CLOSE c_igf_sl_clchsn_dtls;

Line 4828: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

4824: 'AND chdt.change_code_txt = ''B'' ' ||
4825: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4826: 'AND chdt.change_record_type_txt = ''10'' ';
4827: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4828: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4829: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4830:
4831: CLOSE c_igf_sl_clchsn_dtls;
4832: l_v_rowid := NULL;

Line 4829: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

4825: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
4826: 'AND chdt.change_record_type_txt = ''10'' ';
4827: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4828: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4829: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4830:
4831: CLOSE c_igf_sl_clchsn_dtls;
4832: l_v_rowid := NULL;
4833: l_n_clchgsnd_id := NULL;

Line 4831: CLOSE c_igf_sl_clchsn_dtls;

4827: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
4828: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
4829: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
4830:
4831: CLOSE c_igf_sl_clchsn_dtls;
4832: l_v_rowid := NULL;
4833: l_n_clchgsnd_id := NULL;
4834: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4835: p_v_string => ' New Change record is Created ' ||

Line 4842: igf_sl_clchsn_dtls_pkg.insert_row

4838: ' Change code : ' ||'B-Full or Partial Reissue' ||
4839: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
4840: );
4841:
4842: igf_sl_clchsn_dtls_pkg.insert_row
4843: (
4844: x_rowid => l_v_rowid ,
4845: x_clchgsnd_id => l_n_clchgsnd_id ,
4846: x_award_id => l_n_award_id ,

Line 4906: CLOSE c_igf_sl_clchsn_dtls;

4902: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4903: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4904: );
4905: ELSE
4906: CLOSE c_igf_sl_clchsn_dtls;
4907: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4908: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4909: p_v_string => ' New Change record is Created ' ||
4910: ' Change_field_code : ' ||'DISB_AMOUNT' ||

Line 4907: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

4903: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
4904: );
4905: ELSE
4906: CLOSE c_igf_sl_clchsn_dtls;
4907: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
4908: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4909: p_v_string => ' New Change record is Created ' ||
4910: ' Change_field_code : ' ||'DISB_AMOUNT' ||
4911: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||

Line 4915: igf_sl_clchsn_dtls_pkg.update_row

4911: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||
4912: ' Change code : ' ||'B-Full or Partial Reissue' ||
4913: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
4914: );
4915: igf_sl_clchsn_dtls_pkg.update_row
4916: (
4917: x_rowid => l_v_rowid ,
4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4914: );
4915: igf_sl_clchsn_dtls_pkg.update_row
4916: (
4917: x_rowid => l_v_rowid ,
4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4915: igf_sl_clchsn_dtls_pkg.update_row
4916: (
4917: x_rowid => l_v_rowid ,
4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4916: (
4917: x_rowid => l_v_rowid ,
4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4917: x_rowid => l_v_rowid ,
4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,

Line 4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4918: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4919: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4920: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4921: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4922: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4923: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4931: x_new_date => l_d_new_disb_date ,

Line 4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4924: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4931: x_new_date => l_d_new_disb_date ,
4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4925: x_status_code => 'R' ,
4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4931: x_new_date => l_d_new_disb_date ,
4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4933: x_new_amt => l_n_new_disb_accepted_amt ,

Line 4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4926: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4927: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4931: x_new_date => l_d_new_disb_date ,
4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4933: x_new_amt => l_n_new_disb_accepted_amt ,
4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

4928: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
4929: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4931: x_new_date => l_d_new_disb_date ,
4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4933: x_new_amt => l_n_new_disb_accepted_amt ,
4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

4930: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
4931: x_new_date => l_d_new_disb_date ,
4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4933: x_new_amt => l_n_new_disb_accepted_amt ,
4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

4931: x_new_date => l_d_new_disb_date ,
4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4933: x_new_amt => l_n_new_disb_accepted_amt ,
4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

4932: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
4933: x_new_amt => l_n_new_disb_accepted_amt ,
4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4940: x_disbursement_revised_date => l_d_new_disb_date ,

Line 4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

4933: x_new_amt => l_n_new_disb_accepted_amt ,
4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4940: x_disbursement_revised_date => l_d_new_disb_date ,
4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

4934: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
4935: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
4936: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4940: x_disbursement_revised_date => l_d_new_disb_date ,
4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

4937: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4940: x_disbursement_revised_date => l_d_new_disb_date ,
4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

4938: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4940: x_disbursement_revised_date => l_d_new_disb_date ,
4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

4939: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
4940: x_disbursement_revised_date => l_d_new_disb_date ,
4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

4940: x_disbursement_revised_date => l_d_new_disb_date ,
4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

4941: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

4942: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

4943: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

4944: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

4945: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

4946: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4954: x_validation_edit_txt => NULL ,

Line 4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

4947: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4954: x_validation_edit_txt => NULL ,
4955: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

4948: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4954: x_validation_edit_txt => NULL ,
4955: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4956: );

Line 4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

4949: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
4950: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4954: x_validation_edit_txt => NULL ,
4955: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4956: );
4957: -- invoke validation edits to validate the change record. The validation checks if

Line 4955: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

4951: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
4952: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
4953: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
4954: x_validation_edit_txt => NULL ,
4955: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
4956: );
4957: -- invoke validation edits to validate the change record. The validation checks if
4958: -- all the required fields are populated or not for a change record
4959: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 4960: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4956: );
4957: -- invoke validation edits to validate the change record. The validation checks if
4958: -- all the required fields are populated or not for a change record
4959: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4960: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4961: );
4962: l_v_message_name := NULL;
4963: l_b_return_status := TRUE;
4964: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 4964: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

4960: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4961: );
4962: l_v_message_name := NULL;
4963: l_b_return_status := TRUE;
4964: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
4965: p_b_return_status => l_b_return_status,
4966: p_v_message_name => l_v_message_name,
4967: p_t_message_tokens => l_d_message_tokens
4968: );

Line 4982: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

4978: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
4979: END LOOP;
4980: */
4981: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4982: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4983: );
4984: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4985: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4986: );

Line 4985: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

4981: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
4982: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
4983: );
4984: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4985: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4986: );
4987: igf_sl_clchsn_dtls_pkg.update_row
4988: (
4989: x_rowid => l_v_rowid ,

Line 4987: igf_sl_clchsn_dtls_pkg.update_row

4983: );
4984: log_to_fnd(p_v_module => ' create_disb_chg_rec',
4985: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
4986: );
4987: igf_sl_clchsn_dtls_pkg.update_row
4988: (
4989: x_rowid => l_v_rowid ,
4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

4986: );
4987: igf_sl_clchsn_dtls_pkg.update_row
4988: (
4989: x_rowid => l_v_rowid ,
4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

4987: igf_sl_clchsn_dtls_pkg.update_row
4988: (
4989: x_rowid => l_v_rowid ,
4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

4988: (
4989: x_rowid => l_v_rowid ,
4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

4989: x_rowid => l_v_rowid ,
4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,

Line 4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

4990: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

4991: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

4992: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
4993: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

4994: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

4995: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5003: x_new_date => l_d_new_disb_date ,

Line 5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

4996: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5003: x_new_date => l_d_new_disb_date ,
5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

4997: x_status_code => 'N' ,
4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5003: x_new_date => l_d_new_disb_date ,
5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5005: x_new_amt => l_n_new_disb_accepted_amt ,

Line 5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

4998: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
4999: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5003: x_new_date => l_d_new_disb_date ,
5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5005: x_new_amt => l_n_new_disb_accepted_amt ,
5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5000: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5001: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5003: x_new_date => l_d_new_disb_date ,
5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5005: x_new_amt => l_n_new_disb_accepted_amt ,
5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5002: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5003: x_new_date => l_d_new_disb_date ,
5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5005: x_new_amt => l_n_new_disb_accepted_amt ,
5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5003: x_new_date => l_d_new_disb_date ,
5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5005: x_new_amt => l_n_new_disb_accepted_amt ,
5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5004: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5005: x_new_amt => l_n_new_disb_accepted_amt ,
5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5012: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

5005: x_new_amt => l_n_new_disb_accepted_amt ,
5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5012: x_disbursement_revised_date => l_d_new_disb_date ,
5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

5006: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5007: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5008: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5012: x_disbursement_revised_date => l_d_new_disb_date ,
5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5009: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5012: x_disbursement_revised_date => l_d_new_disb_date ,
5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5010: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5012: x_disbursement_revised_date => l_d_new_disb_date ,
5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5011: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5012: x_disbursement_revised_date => l_d_new_disb_date ,
5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5012: x_disbursement_revised_date => l_d_new_disb_date ,
5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5013: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5014: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5015: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5016: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5017: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5018: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5026: x_validation_edit_txt => fnd_message.get ,

Line 5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5019: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5026: x_validation_edit_txt => fnd_message.get ,
5027: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5020: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5026: x_validation_edit_txt => fnd_message.get ,
5027: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5028: );

Line 5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5021: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5022: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5026: x_validation_edit_txt => fnd_message.get ,
5027: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5028: );
5029: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 5027: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5023: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5024: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5025: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5026: x_validation_edit_txt => fnd_message.get ,
5027: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5028: );
5029: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5030: p_v_string => ' updated the status of change send record to Not Ready to Send'
5031: );

Line 5036: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5032: END IF;
5033: p_b_return_status := TRUE;
5034: p_v_message_name := NULL;
5035: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5036: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5037: );
5038: END IF;
5039: -- if changes are reverted back
5040: ELSIF ((l_n_resp_disb_gross_amt = l_n_new_disb_accepted_amt) AND

Line 5058: 'FROM igf_sl_clchsn_dtls chdt ' ||

5054: );
5055:
5056: -- verify if the existing change record is to be deleted
5057: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5058: 'FROM igf_sl_clchsn_dtls chdt ' ||
5059: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5060: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5061: 'AND chdt.old_amt = :cp_d_new_disb_amt ' ||
5062: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 5066: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;

5062: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
5063: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5064: 'AND chdt.change_code_txt = ''B'' ' ||
5065: 'AND chdt.change_record_type_txt = ''10'' ';
5066: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
5067: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5068: IF c_igf_sl_clchsn_dtls%FOUND THEN
5069: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5070: p_v_string => ' Change record to be deleted ' ||

Line 5067: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5063: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5064: 'AND chdt.change_code_txt = ''B'' ' ||
5065: 'AND chdt.change_record_type_txt = ''10'' ';
5066: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
5067: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5068: IF c_igf_sl_clchsn_dtls%FOUND THEN
5069: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5070: p_v_string => ' Change record to be deleted ' ||
5071: ' Award Id : ' ||l_n_award_id ||

Line 5068: IF c_igf_sl_clchsn_dtls%FOUND THEN

5064: 'AND chdt.change_code_txt = ''B'' ' ||
5065: 'AND chdt.change_record_type_txt = ''10'' ';
5066: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
5067: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5068: IF c_igf_sl_clchsn_dtls%FOUND THEN
5069: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5070: p_v_string => ' Change record to be deleted ' ||
5071: ' Award Id : ' ||l_n_award_id ||
5072: ' Disb Num : ' ||l_n_disb_num ||

Line 5075: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

5071: ' Award Id : ' ||l_n_award_id ||
5072: ' Disb Num : ' ||l_n_disb_num ||
5073: ' new disb Amount: ' ||l_n_new_disb_accepted_amt
5074: );
5075: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
5076: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5077: p_v_string => ' Change record to be deleted succesfully' ||
5078: ' Award Id : ' ||l_n_award_id ||
5079: ' Disb Num : ' ||l_n_disb_num ||

Line 5083: CLOSE c_igf_sl_clchsn_dtls;

5079: ' Disb Num : ' ||l_n_disb_num ||
5080: ' new disb Amount: ' ||l_n_new_disb_accepted_amt
5081: );
5082: END IF;
5083: CLOSE c_igf_sl_clchsn_dtls;
5084: p_b_return_status := TRUE;
5085: p_v_message_name := NULL;
5086: END IF;
5087: -- End of code logic for disbursement amount change (Reissue)

Line 5107: 'FROM igf_sl_clchsn_dtls chdt ' ||

5103: ' change_field_code : '||'DISB_AMOUNT'
5104: );
5105: -- verify if the existing change record is to be updated or inserted
5106: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5107: 'FROM igf_sl_clchsn_dtls chdt ' ||
5108: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5109: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5110: 'AND chdt.old_amt = :cp_d_resp_disb_amt ' ||
5111: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 5115: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;

5111: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
5112: 'AND chdt.change_code_txt = ''A'' ' ||
5113: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5114: 'AND chdt.change_record_type_txt = ''10'' ';
5115: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
5116: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5117: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5118:
5119: CLOSE c_igf_sl_clchsn_dtls;

Line 5116: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5112: 'AND chdt.change_code_txt = ''A'' ' ||
5113: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5114: 'AND chdt.change_record_type_txt = ''10'' ';
5115: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
5116: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5117: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5118:
5119: CLOSE c_igf_sl_clchsn_dtls;
5120: l_v_rowid := NULL;

Line 5117: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

5113: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5114: 'AND chdt.change_record_type_txt = ''10'' ';
5115: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
5116: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5117: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5118:
5119: CLOSE c_igf_sl_clchsn_dtls;
5120: l_v_rowid := NULL;
5121: l_n_clchgsnd_id := NULL;

Line 5119: CLOSE c_igf_sl_clchsn_dtls;

5115: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_resp_disb_gross_amt;
5116: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5117: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5118:
5119: CLOSE c_igf_sl_clchsn_dtls;
5120: l_v_rowid := NULL;
5121: l_n_clchgsnd_id := NULL;
5122: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5123: p_v_string => ' New Change record is Created ' ||

Line 5130: igf_sl_clchsn_dtls_pkg.insert_row

5126: ' Change code : ' ||'A-Full or Partial Cancellation' ||
5127: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
5128: );
5129:
5130: igf_sl_clchsn_dtls_pkg.insert_row
5131: (
5132: x_rowid => l_v_rowid ,
5133: x_clchgsnd_id => l_n_clchgsnd_id ,
5134: x_award_id => l_n_award_id ,

Line 5194: CLOSE c_igf_sl_clchsn_dtls;

5190: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5191: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
5192: );
5193: ELSE
5194: CLOSE c_igf_sl_clchsn_dtls;
5195: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
5196: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5197: p_v_string => ' New Change record is Created ' ||
5198: ' Change_field_code : ' ||'DISB_AMOUNT' ||

Line 5195: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

5191: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
5192: );
5193: ELSE
5194: CLOSE c_igf_sl_clchsn_dtls;
5195: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
5196: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5197: p_v_string => ' New Change record is Created ' ||
5198: ' Change_field_code : ' ||'DISB_AMOUNT' ||
5199: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||

Line 5203: igf_sl_clchsn_dtls_pkg.update_row

5199: ' Change record type: ' ||'10 - Disbursement Notification / Change' ||
5200: ' Change code : ' ||'A-Full or Partial Cancellation' ||
5201: ' new disb Amount : ' ||l_n_new_disb_accepted_amt
5202: );
5203: igf_sl_clchsn_dtls_pkg.update_row
5204: (
5205: x_rowid => l_v_rowid ,
5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

5202: );
5203: igf_sl_clchsn_dtls_pkg.update_row
5204: (
5205: x_rowid => l_v_rowid ,
5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

5203: igf_sl_clchsn_dtls_pkg.update_row
5204: (
5205: x_rowid => l_v_rowid ,
5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

5204: (
5205: x_rowid => l_v_rowid ,
5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

5205: x_rowid => l_v_rowid ,
5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,

Line 5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

5206: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

5207: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

5208: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5209: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

5210: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

5211: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5219: x_new_date => l_d_new_disb_date ,

Line 5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

5212: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5219: x_new_date => l_d_new_disb_date ,
5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

5213: x_status_code => 'R' ,
5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5219: x_new_date => l_d_new_disb_date ,
5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5221: x_new_amt => l_n_new_disb_accepted_amt ,

Line 5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

5214: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5215: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5219: x_new_date => l_d_new_disb_date ,
5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5221: x_new_amt => l_n_new_disb_accepted_amt ,
5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5216: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5217: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5219: x_new_date => l_d_new_disb_date ,
5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5221: x_new_amt => l_n_new_disb_accepted_amt ,
5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5223: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5224: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5218: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5219: x_new_date => l_d_new_disb_date ,
5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5221: x_new_amt => l_n_new_disb_accepted_amt ,
5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5223: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5224: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5225: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,

Line 5223: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5219: x_new_date => l_d_new_disb_date ,
5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5221: x_new_amt => l_n_new_disb_accepted_amt ,
5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5223: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5224: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5225: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,
5227: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 5224: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5220: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5221: x_new_amt => l_n_new_disb_accepted_amt ,
5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5223: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5224: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5225: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,
5227: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5228: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,

5222: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5223: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5224: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5225: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,
5227: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5228: x_disbursement_revised_date => l_d_new_disb_date ,
5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5225: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,
5227: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5228: x_disbursement_revised_date => l_d_new_disb_date ,
5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5226: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt) ,
5227: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5228: x_disbursement_revised_date => l_d_new_disb_date ,
5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5227: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5228: x_disbursement_revised_date => l_d_new_disb_date ,
5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5228: x_disbursement_revised_date => l_d_new_disb_date ,
5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5229: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5230: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5231: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5232: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5233: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5234: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5242: x_validation_edit_txt => NULL ,

Line 5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5235: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5242: x_validation_edit_txt => NULL ,
5243: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5236: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5242: x_validation_edit_txt => NULL ,
5243: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5244: );

Line 5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5237: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5238: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5242: x_validation_edit_txt => NULL ,
5243: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5244: );
5245: -- invoke validation edits to validate the change record. The validation checks if

Line 5243: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5239: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5240: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5241: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5242: x_validation_edit_txt => NULL ,
5243: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5244: );
5245: -- invoke validation edits to validate the change record. The validation checks if
5246: -- all the required fields are populated or not for a change record
5247: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 5248: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5244: );
5245: -- invoke validation edits to validate the change record. The validation checks if
5246: -- all the required fields are populated or not for a change record
5247: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5248: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5249: );
5250: l_v_message_name := NULL;
5251: l_b_return_status := TRUE;
5252: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 5252: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

5248: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5249: );
5250: l_v_message_name := NULL;
5251: l_b_return_status := TRUE;
5252: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
5253: p_b_return_status => l_b_return_status,
5254: p_v_message_name => l_v_message_name,
5255: p_t_message_tokens => l_d_message_tokens
5256: );

Line 5270: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5266: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
5267: END LOOP;
5268: */
5269: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5270: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5271: );
5272: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5273: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5274: );

Line 5273: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

5269: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5270: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5271: );
5272: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5273: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5274: );
5275: igf_sl_clchsn_dtls_pkg.update_row
5276: (
5277: x_rowid => l_v_rowid ,

Line 5275: igf_sl_clchsn_dtls_pkg.update_row

5271: );
5272: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5273: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5274: );
5275: igf_sl_clchsn_dtls_pkg.update_row
5276: (
5277: x_rowid => l_v_rowid ,
5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

5274: );
5275: igf_sl_clchsn_dtls_pkg.update_row
5276: (
5277: x_rowid => l_v_rowid ,
5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

5275: igf_sl_clchsn_dtls_pkg.update_row
5276: (
5277: x_rowid => l_v_rowid ,
5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

5276: (
5277: x_rowid => l_v_rowid ,
5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

5277: x_rowid => l_v_rowid ,
5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,

Line 5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

5278: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

5279: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

5280: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5281: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

5282: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

5283: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5291: x_new_date => l_d_new_disb_date ,

Line 5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

5284: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5291: x_new_date => l_d_new_disb_date ,
5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

5285: x_status_code => 'N' ,
5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5291: x_new_date => l_d_new_disb_date ,
5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5293: x_new_amt => l_n_new_disb_accepted_amt ,

Line 5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

5286: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5287: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5291: x_new_date => l_d_new_disb_date ,
5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5293: x_new_amt => l_n_new_disb_accepted_amt ,
5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5288: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5289: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5291: x_new_date => l_d_new_disb_date ,
5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5293: x_new_amt => l_n_new_disb_accepted_amt ,
5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5295: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5296: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5290: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5291: x_new_date => l_d_new_disb_date ,
5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5293: x_new_amt => l_n_new_disb_accepted_amt ,
5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5295: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5296: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5297: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),

Line 5295: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5291: x_new_date => l_d_new_disb_date ,
5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5293: x_new_amt => l_n_new_disb_accepted_amt ,
5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5295: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5296: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5297: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),
5299: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,

Line 5296: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5292: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5293: x_new_amt => l_n_new_disb_accepted_amt ,
5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5295: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5296: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5297: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),
5299: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5300: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),

5294: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5295: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5296: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5297: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),
5299: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5300: x_disbursement_revised_date => l_d_new_disb_date ,
5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5297: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),
5299: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5300: x_disbursement_revised_date => l_d_new_disb_date ,
5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5298: x_disbursement_cancel_amt => (rec_c_igf_sl_clchsn_dtls.old_amt - l_n_new_disb_accepted_amt),
5299: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5300: x_disbursement_revised_date => l_d_new_disb_date ,
5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5299: x_disbursement_revised_amt => l_n_new_disb_accepted_amt ,
5300: x_disbursement_revised_date => l_d_new_disb_date ,
5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5300: x_disbursement_revised_date => l_d_new_disb_date ,
5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5301: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5302: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5303: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5304: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5305: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5306: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5314: x_validation_edit_txt => fnd_message.get ,

Line 5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5307: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5314: x_validation_edit_txt => fnd_message.get ,
5315: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5308: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5314: x_validation_edit_txt => fnd_message.get ,
5315: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5316: );

Line 5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5309: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5310: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5314: x_validation_edit_txt => fnd_message.get ,
5315: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5316: );
5317: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 5315: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5311: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5312: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5313: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5314: x_validation_edit_txt => fnd_message.get ,
5315: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5316: );
5317: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5318: p_v_string => ' updated the status of change send record to Not Ready to Send'
5319: );

Line 5324: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5320: END IF;
5321: p_b_return_status := TRUE;
5322: p_v_message_name := NULL;
5323: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5324: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5325: );
5326: END IF;
5327: -- if changes are reverted back
5328: ELSIF ((l_n_resp_disb_gross_amt = l_n_new_disb_accepted_amt) AND

Line 5346: 'FROM igf_sl_clchsn_dtls chdt ' ||

5342: );
5343:
5344: -- verify if the existing change record is to be deleted
5345: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5346: 'FROM igf_sl_clchsn_dtls chdt ' ||
5347: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5348: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5349: 'AND chdt.old_amt = :cp_d_new_disb_amt ' ||
5350: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||

Line 5354: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;

5350: 'AND chdt.change_field_code = ''DISB_AMOUNT'' ' ||
5351: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5352: 'AND chdt.change_code_txt = ''A'' ' ||
5353: 'AND chdt.change_record_type_txt = ''10'' ';
5354: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
5355: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5356: IF c_igf_sl_clchsn_dtls%FOUND THEN
5357: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5358: p_v_string => ' Change record to be deleted ' ||

Line 5355: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5351: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5352: 'AND chdt.change_code_txt = ''A'' ' ||
5353: 'AND chdt.change_record_type_txt = ''10'' ';
5354: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
5355: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5356: IF c_igf_sl_clchsn_dtls%FOUND THEN
5357: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5358: p_v_string => ' Change record to be deleted ' ||
5359: ' Award Id : ' ||l_n_award_id ||

Line 5356: IF c_igf_sl_clchsn_dtls%FOUND THEN

5352: 'AND chdt.change_code_txt = ''A'' ' ||
5353: 'AND chdt.change_record_type_txt = ''10'' ';
5354: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_n_new_disb_accepted_amt;
5355: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5356: IF c_igf_sl_clchsn_dtls%FOUND THEN
5357: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5358: p_v_string => ' Change record to be deleted ' ||
5359: ' Award Id : ' ||l_n_award_id ||
5360: ' Disb Num : ' ||l_n_disb_num ||

Line 5363: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

5359: ' Award Id : ' ||l_n_award_id ||
5360: ' Disb Num : ' ||l_n_disb_num ||
5361: ' new disb Amount: ' ||l_n_new_disb_accepted_amt
5362: );
5363: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
5364: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5365: p_v_string => ' Change record to be deleted succesfully' ||
5366: ' Award Id : ' ||l_n_award_id ||
5367: ' Disb Num : ' ||l_n_disb_num ||

Line 5371: CLOSE c_igf_sl_clchsn_dtls;

5367: ' Disb Num : ' ||l_n_disb_num ||
5368: ' new disb Amount: ' ||l_n_new_disb_accepted_amt
5369: );
5370: END IF;
5371: CLOSE c_igf_sl_clchsn_dtls;
5372: p_b_return_status := TRUE;
5373: p_v_message_name := NULL;
5374: END IF;
5375: -- End of code logic for disbursement amount change (Cancellation)

Line 5395: 'FROM igf_sl_clchsn_dtls chdt ' ||

5391: ' change_field_code : '|| 'DISB_DATE'
5392: );
5393: -- verify if the existing change record is to be updated or inserted
5394: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5395: 'FROM igf_sl_clchsn_dtls chdt ' ||
5396: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5397: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5398: 'AND chdt.old_date = :cp_d_resp_disb_dt ' ||
5399: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 5404: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;

5400: 'AND chdt.change_code_txt = ''C'' ' ||
5401: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5402: 'AND chdt.change_record_type_txt = ''10'' ';
5403:
5404: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5405: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5406: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5407: CLOSE c_igf_sl_clchsn_dtls;
5408: l_v_rowid := NULL;

Line 5405: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5401: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5402: 'AND chdt.change_record_type_txt = ''10'' ';
5403:
5404: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5405: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5406: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5407: CLOSE c_igf_sl_clchsn_dtls;
5408: l_v_rowid := NULL;
5409: l_n_clchgsnd_id := NULL;

Line 5406: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

5402: 'AND chdt.change_record_type_txt = ''10'' ';
5403:
5404: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5405: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5406: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5407: CLOSE c_igf_sl_clchsn_dtls;
5408: l_v_rowid := NULL;
5409: l_n_clchgsnd_id := NULL;
5410: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 5407: CLOSE c_igf_sl_clchsn_dtls;

5403:
5404: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5405: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5406: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5407: CLOSE c_igf_sl_clchsn_dtls;
5408: l_v_rowid := NULL;
5409: l_n_clchgsnd_id := NULL;
5410: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5411: p_v_string => ' New Change record is Created ' ||

Line 5416: igf_sl_clchsn_dtls_pkg.insert_row

5412: ' Change_field_code : ' ||'DISB_DATE' ||
5413: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||
5414: ' Change code : ' ||'C - Full or Partial Reinstatement '
5415: );
5416: igf_sl_clchsn_dtls_pkg.insert_row
5417: (
5418: x_rowid => l_v_rowid ,
5419: x_clchgsnd_id => l_n_clchgsnd_id ,
5420: x_award_id => l_n_award_id ,

Line 5480: CLOSE c_igf_sl_clchsn_dtls;

5476: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5477: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
5478: );
5479: ELSE
5480: CLOSE c_igf_sl_clchsn_dtls;
5481: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
5482: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5483: p_v_string => ' Change record is updated ' ||
5484: ' Change_field_code : ' ||'DISB_DATE' ||

Line 5481: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

5477: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
5478: );
5479: ELSE
5480: CLOSE c_igf_sl_clchsn_dtls;
5481: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
5482: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5483: p_v_string => ' Change record is updated ' ||
5484: ' Change_field_code : ' ||'DISB_DATE' ||
5485: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||

Line 5489: igf_sl_clchsn_dtls_pkg.update_row

5485: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||
5486: ' Change code : ' ||'C - Full or Partial Reinstatement ' ||
5487: ' new disb date : ' || l_d_new_disb_date
5488: );
5489: igf_sl_clchsn_dtls_pkg.update_row
5490: (
5491: x_rowid => l_v_rowid ,
5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

5488: );
5489: igf_sl_clchsn_dtls_pkg.update_row
5490: (
5491: x_rowid => l_v_rowid ,
5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

5489: igf_sl_clchsn_dtls_pkg.update_row
5490: (
5491: x_rowid => l_v_rowid ,
5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

5490: (
5491: x_rowid => l_v_rowid ,
5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

5491: x_rowid => l_v_rowid ,
5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,

Line 5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

5492: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

5493: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

5494: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5495: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

5496: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

5497: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,

Line 5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

5498: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

5499: x_status_code => 'R' ,
5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

5500: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5501: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5502: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

5503: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5504: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5505: x_new_date => l_d_new_disb_date ,
5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5506: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

5507: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

5508: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

5509: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5510: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5511: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5512: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5513: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5514: x_disbursement_revised_date => l_d_new_disb_date ,
5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5515: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5516: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5517: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5518: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5519: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5520: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5528: x_validation_edit_txt => NULL ,

Line 5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5521: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5528: x_validation_edit_txt => NULL ,
5529: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5522: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5528: x_validation_edit_txt => NULL ,
5529: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5530: );

Line 5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5523: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5524: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5528: x_validation_edit_txt => NULL ,
5529: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5530: );
5531: -- invoke validation edits to validate the change record. The validation checks if

Line 5529: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5525: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5526: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5527: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5528: x_validation_edit_txt => NULL ,
5529: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5530: );
5531: -- invoke validation edits to validate the change record. The validation checks if
5532: -- all the required fields are populated or not for a change record
5533: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 5534: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5530: );
5531: -- invoke validation edits to validate the change record. The validation checks if
5532: -- all the required fields are populated or not for a change record
5533: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5534: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5535: );
5536: l_v_message_name := NULL;
5537: l_b_return_status := TRUE;
5538: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 5538: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

5534: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5535: );
5536: l_v_message_name := NULL;
5537: l_b_return_status := TRUE;
5538: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
5539: p_b_return_status => l_b_return_status,
5540: p_v_message_name => l_v_message_name,
5541: p_t_message_tokens => l_d_message_tokens
5542: );

Line 5556: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5552: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
5553: END LOOP;
5554: */
5555: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5556: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5557: );
5558: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5559: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5560: );

Line 5559: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

5555: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5556: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5557: );
5558: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5559: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5560: );
5561: igf_sl_clchsn_dtls_pkg.update_row
5562: (
5563: x_rowid => l_v_rowid ,

Line 5561: igf_sl_clchsn_dtls_pkg.update_row

5557: );
5558: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5559: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5560: );
5561: igf_sl_clchsn_dtls_pkg.update_row
5562: (
5563: x_rowid => l_v_rowid ,
5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

5560: );
5561: igf_sl_clchsn_dtls_pkg.update_row
5562: (
5563: x_rowid => l_v_rowid ,
5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

5561: igf_sl_clchsn_dtls_pkg.update_row
5562: (
5563: x_rowid => l_v_rowid ,
5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

5562: (
5563: x_rowid => l_v_rowid ,
5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

5563: x_rowid => l_v_rowid ,
5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,

Line 5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

5564: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

5565: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

5566: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5567: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

5568: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

5569: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,

Line 5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

5570: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

5571: x_status_code => 'N' ,
5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

5572: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5573: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5574: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

5575: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5576: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5577: x_new_date => l_d_new_disb_date ,
5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5578: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

5579: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

5580: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

5581: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5582: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5583: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5584: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5585: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5586: x_disbursement_revised_date => l_d_new_disb_date ,
5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5587: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5588: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5589: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5590: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5591: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5592: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5600: x_validation_edit_txt => fnd_message.get ,

Line 5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5593: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5600: x_validation_edit_txt => fnd_message.get ,
5601: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5594: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5600: x_validation_edit_txt => fnd_message.get ,
5601: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5602: );

Line 5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5595: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5596: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5600: x_validation_edit_txt => fnd_message.get ,
5601: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5602: );
5603: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 5601: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5597: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5598: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5599: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5600: x_validation_edit_txt => fnd_message.get ,
5601: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5602: );
5603: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5604: p_v_string => ' updated the status of change send record to Not Ready to Send'
5605: );

Line 5610: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5606: END IF;
5607: p_b_return_status := TRUE;
5608: p_v_message_name := NULL;
5609: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5610: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5611: );
5612: END IF;
5613: -- if changes have been reverted back
5614: ELSIF l_d_resp_disb_date = l_d_new_disb_date AND

Line 5631: 'FROM igf_sl_clchsn_dtls chdt ' ||

5627: ' change_field_code : ' || 'DISB_DATE'
5628: );
5629: -- verify if the existing change record is to be deleted
5630: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5631: 'FROM igf_sl_clchsn_dtls chdt ' ||
5632: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5633: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5634: 'AND chdt.old_date = :cp_d_new_disb_dt ' ||
5635: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 5640: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;

5636: 'AND chdt.change_code_txt = ''C'' ' ||
5637: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5638: 'AND chdt.change_record_type_txt = ''10'' ';
5639:
5640: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
5641: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5642: IF c_igf_sl_clchsn_dtls%FOUND THEN
5643: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5644: p_v_string => ' Change record to be deleted ' ||

Line 5641: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5637: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5638: 'AND chdt.change_record_type_txt = ''10'' ';
5639:
5640: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
5641: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5642: IF c_igf_sl_clchsn_dtls%FOUND THEN
5643: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5644: p_v_string => ' Change record to be deleted ' ||
5645: ' Award Id : '||l_n_award_id ||

Line 5642: IF c_igf_sl_clchsn_dtls%FOUND THEN

5638: 'AND chdt.change_record_type_txt = ''10'' ';
5639:
5640: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
5641: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5642: IF c_igf_sl_clchsn_dtls%FOUND THEN
5643: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5644: p_v_string => ' Change record to be deleted ' ||
5645: ' Award Id : '||l_n_award_id ||
5646: ' Disb Num : '||l_n_disb_num ||

Line 5649: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

5645: ' Award Id : '||l_n_award_id ||
5646: ' Disb Num : '||l_n_disb_num ||
5647: ' New disb Date: '||l_d_new_disb_date
5648: );
5649: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
5650: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5651: p_v_string => ' Change record deleted Successfully' ||
5652: ' Award Id : '||l_n_award_id ||
5653: ' Disb Num : '||l_n_disb_num ||

Line 5657: CLOSE c_igf_sl_clchsn_dtls;

5653: ' Disb Num : '||l_n_disb_num ||
5654: ' New disb Date: '||l_d_new_disb_date
5655: );
5656: END IF;
5657: CLOSE c_igf_sl_clchsn_dtls;
5658: p_b_return_status := TRUE;
5659: p_v_message_name := NULL;
5660: END IF;
5661: -- end of code logic for Change Type = Reinstatement

Line 5682: 'FROM igf_sl_clchsn_dtls chdt ' ||

5678: ' change_field_code : '|| 'DISB_DATE'
5679: );
5680: -- verify if the existing change record is to be updated or inserted
5681: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5682: 'FROM igf_sl_clchsn_dtls chdt ' ||
5683: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5684: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5685: 'AND chdt.old_date = :cp_d_resp_disb_dt ' ||
5686: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 5691: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;

5687: 'AND chdt.change_code_txt = ''B'' ' ||
5688: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5689: 'AND chdt.change_record_type_txt = ''10'' ';
5690:
5691: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5692: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5693: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5694: CLOSE c_igf_sl_clchsn_dtls;
5695: l_v_rowid := NULL;

Line 5692: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5688: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5689: 'AND chdt.change_record_type_txt = ''10'' ';
5690:
5691: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5692: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5693: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5694: CLOSE c_igf_sl_clchsn_dtls;
5695: l_v_rowid := NULL;
5696: l_n_clchgsnd_id := NULL;

Line 5693: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

5689: 'AND chdt.change_record_type_txt = ''10'' ';
5690:
5691: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5692: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5693: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5694: CLOSE c_igf_sl_clchsn_dtls;
5695: l_v_rowid := NULL;
5696: l_n_clchgsnd_id := NULL;
5697: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 5694: CLOSE c_igf_sl_clchsn_dtls;

5690:
5691: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5692: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5693: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5694: CLOSE c_igf_sl_clchsn_dtls;
5695: l_v_rowid := NULL;
5696: l_n_clchgsnd_id := NULL;
5697: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5698: p_v_string => ' New Change record is Created ' ||

Line 5703: igf_sl_clchsn_dtls_pkg.insert_row

5699: ' Change_field_code : ' ||'DISB_DATE' ||
5700: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||
5701: ' Change code : ' ||'B - Full or Partial Reissue '
5702: );
5703: igf_sl_clchsn_dtls_pkg.insert_row
5704: (
5705: x_rowid => l_v_rowid ,
5706: x_clchgsnd_id => l_n_clchgsnd_id ,
5707: x_award_id => l_n_award_id ,

Line 5767: CLOSE c_igf_sl_clchsn_dtls;

5763: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5764: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
5765: );
5766: ELSE
5767: CLOSE c_igf_sl_clchsn_dtls;
5768: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
5769: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5770: p_v_string => ' Change record is updated ' ||
5771: ' Change_field_code : ' ||'DISB_DATE' ||

Line 5768: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

5764: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
5765: );
5766: ELSE
5767: CLOSE c_igf_sl_clchsn_dtls;
5768: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
5769: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5770: p_v_string => ' Change record is updated ' ||
5771: ' Change_field_code : ' ||'DISB_DATE' ||
5772: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||

Line 5776: igf_sl_clchsn_dtls_pkg.update_row

5772: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||
5773: ' Change code : ' ||'B - Full or Partial Reissue ' ||
5774: ' new disb date : ' || l_d_new_disb_date
5775: );
5776: igf_sl_clchsn_dtls_pkg.update_row
5777: (
5778: x_rowid => l_v_rowid ,
5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

5775: );
5776: igf_sl_clchsn_dtls_pkg.update_row
5777: (
5778: x_rowid => l_v_rowid ,
5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

5776: igf_sl_clchsn_dtls_pkg.update_row
5777: (
5778: x_rowid => l_v_rowid ,
5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

5777: (
5778: x_rowid => l_v_rowid ,
5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

5778: x_rowid => l_v_rowid ,
5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,

Line 5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

5779: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

5780: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

5781: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5782: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

5783: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

5784: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,

Line 5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

5785: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

5786: x_status_code => 'R' ,
5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

5787: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5788: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5789: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

5790: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5791: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5792: x_new_date => l_d_new_disb_date ,
5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5793: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

5794: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

5795: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

5796: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5797: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5798: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5799: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5800: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5801: x_disbursement_revised_date => l_d_new_disb_date ,
5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5802: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5803: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5804: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5805: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5806: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5807: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5815: x_validation_edit_txt => NULL ,

Line 5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5808: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5815: x_validation_edit_txt => NULL ,
5816: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5809: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5815: x_validation_edit_txt => NULL ,
5816: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5817: );

Line 5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5810: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5811: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5815: x_validation_edit_txt => NULL ,
5816: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5817: );
5818: -- invoke validation edits to validate the change record. The validation checks if

Line 5816: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5812: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5813: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5814: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5815: x_validation_edit_txt => NULL ,
5816: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5817: );
5818: -- invoke validation edits to validate the change record. The validation checks if
5819: -- all the required fields are populated or not for a change record
5820: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 5821: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5817: );
5818: -- invoke validation edits to validate the change record. The validation checks if
5819: -- all the required fields are populated or not for a change record
5820: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5821: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5822: );
5823: l_v_message_name := NULL;
5824: l_b_return_status := TRUE;
5825: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 5825: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

5821: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5822: );
5823: l_v_message_name := NULL;
5824: l_b_return_status := TRUE;
5825: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
5826: p_b_return_status => l_b_return_status,
5827: p_v_message_name => l_v_message_name,
5828: p_t_message_tokens => l_d_message_tokens
5829: );

Line 5843: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5839: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
5840: END LOOP;
5841: */
5842: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5843: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5844: );
5845: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5846: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5847: );

Line 5846: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

5842: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5843: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5844: );
5845: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5846: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5847: );
5848: igf_sl_clchsn_dtls_pkg.update_row
5849: (
5850: x_rowid => l_v_rowid ,

Line 5848: igf_sl_clchsn_dtls_pkg.update_row

5844: );
5845: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5846: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
5847: );
5848: igf_sl_clchsn_dtls_pkg.update_row
5849: (
5850: x_rowid => l_v_rowid ,
5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

5847: );
5848: igf_sl_clchsn_dtls_pkg.update_row
5849: (
5850: x_rowid => l_v_rowid ,
5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

5848: igf_sl_clchsn_dtls_pkg.update_row
5849: (
5850: x_rowid => l_v_rowid ,
5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

5849: (
5850: x_rowid => l_v_rowid ,
5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

5850: x_rowid => l_v_rowid ,
5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,

Line 5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

5851: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

5852: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

5853: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
5854: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

5855: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

5856: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,

Line 5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

5857: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

5858: x_status_code => 'N' ,
5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

5859: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
5860: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

5861: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

5862: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

Line 5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

5863: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

5864: x_new_date => l_d_new_disb_date ,
5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

5865: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,

Line 5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,

5866: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

Line 5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

5867: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

5868: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
5869: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

5870: x_disbursement_cancel_date => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_date ,
5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

5871: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

5872: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

5873: x_disbursement_revised_date => l_d_new_disb_date ,
5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

5874: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

5875: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

5876: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

5877: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

5878: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

5879: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5887: x_validation_edit_txt => fnd_message.get ,

Line 5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

5880: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5887: x_validation_edit_txt => fnd_message.get ,
5888: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

5881: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5887: x_validation_edit_txt => fnd_message.get ,
5888: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5889: );

Line 5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

5882: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
5883: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5887: x_validation_edit_txt => fnd_message.get ,
5888: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5889: );
5890: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 5888: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

5884: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
5885: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
5886: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
5887: x_validation_edit_txt => fnd_message.get ,
5888: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
5889: );
5890: log_to_fnd(p_v_module => ' create_disb_chg_rec',
5891: p_v_string => ' updated the status of change send record to Not Ready to Send'
5892: );

Line 5897: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

5893: END IF;
5894: p_b_return_status := TRUE;
5895: p_v_message_name := NULL;
5896: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5897: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
5898: );
5899: END IF;
5900: -- if changes have been reverted back
5901: ELSIF l_d_resp_disb_date = l_d_new_disb_date AND

Line 5918: 'FROM igf_sl_clchsn_dtls chdt ' ||

5914: ' change_field_code : ' || 'DISB_DATE'
5915: );
5916: -- verify if the existing change record is to be deleted
5917: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5918: 'FROM igf_sl_clchsn_dtls chdt ' ||
5919: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5920: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5921: 'AND chdt.old_date = :cp_d_new_disb_dt ' ||
5922: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 5927: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;

5923: 'AND chdt.change_code_txt = ''B'' ' ||
5924: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5925: 'AND chdt.change_record_type_txt = ''10'' ';
5926:
5927: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
5928: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5929: IF c_igf_sl_clchsn_dtls%FOUND THEN
5930: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5931: p_v_string => ' Change record to be deleted ' ||

Line 5928: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5924: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5925: 'AND chdt.change_record_type_txt = ''10'' ';
5926:
5927: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
5928: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5929: IF c_igf_sl_clchsn_dtls%FOUND THEN
5930: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5931: p_v_string => ' Change record to be deleted ' ||
5932: ' Award Id : '||l_n_award_id ||

Line 5929: IF c_igf_sl_clchsn_dtls%FOUND THEN

5925: 'AND chdt.change_record_type_txt = ''10'' ';
5926:
5927: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
5928: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5929: IF c_igf_sl_clchsn_dtls%FOUND THEN
5930: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5931: p_v_string => ' Change record to be deleted ' ||
5932: ' Award Id : '||l_n_award_id ||
5933: ' Disb Num : '||l_n_disb_num ||

Line 5936: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

5932: ' Award Id : '||l_n_award_id ||
5933: ' Disb Num : '||l_n_disb_num ||
5934: ' New disb Date: '||l_d_new_disb_date
5935: );
5936: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
5937: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5938: p_v_string => ' Change record deleted Successfully' ||
5939: ' Award Id : '||l_n_award_id ||
5940: ' Disb Num : '||l_n_disb_num ||

Line 5944: CLOSE c_igf_sl_clchsn_dtls;

5940: ' Disb Num : '||l_n_disb_num ||
5941: ' New disb Date: '||l_d_new_disb_date
5942: );
5943: END IF;
5944: CLOSE c_igf_sl_clchsn_dtls;
5945: p_b_return_status := TRUE;
5946: p_v_message_name := NULL;
5947: END IF;
5948: -- end of code logic for Change Type = Reissue

Line 5969: 'FROM igf_sl_clchsn_dtls chdt ' ||

5965: ' change_field_code : '|| 'DISB_DATE'
5966: );
5967: -- verify if the existing change record is to be updated or inserted
5968: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
5969: 'FROM igf_sl_clchsn_dtls chdt ' ||
5970: 'WHERE chdt.award_id = :cp_n_award_id ' ||
5971: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
5972: 'AND chdt.old_date = :cp_d_resp_disb_dt ' ||
5973: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 5978: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;

5974: 'AND chdt.change_code_txt = ''A'' ' ||
5975: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5976: 'AND chdt.change_record_type_txt = ''10'' ';
5977:
5978: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5979: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5980: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5981: CLOSE c_igf_sl_clchsn_dtls;
5982: l_v_rowid := NULL;

Line 5979: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

5975: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
5976: 'AND chdt.change_record_type_txt = ''10'' ';
5977:
5978: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5979: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5980: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5981: CLOSE c_igf_sl_clchsn_dtls;
5982: l_v_rowid := NULL;
5983: l_n_clchgsnd_id := NULL;

Line 5980: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN

5976: 'AND chdt.change_record_type_txt = ''10'' ';
5977:
5978: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5979: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5980: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5981: CLOSE c_igf_sl_clchsn_dtls;
5982: l_v_rowid := NULL;
5983: l_n_clchgsnd_id := NULL;
5984: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 5981: CLOSE c_igf_sl_clchsn_dtls;

5977:
5978: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_resp_disb_date;
5979: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
5980: IF c_igf_sl_clchsn_dtls%NOTFOUND THEN
5981: CLOSE c_igf_sl_clchsn_dtls;
5982: l_v_rowid := NULL;
5983: l_n_clchgsnd_id := NULL;
5984: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
5985: p_v_string => ' New Change record is Created ' ||

Line 5990: igf_sl_clchsn_dtls_pkg.insert_row

5986: ' Change_field_code : ' ||'DISB_DATE' ||
5987: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||
5988: ' Change code : ' ||'A - Full or Partial Cancellation '
5989: );
5990: igf_sl_clchsn_dtls_pkg.insert_row
5991: (
5992: x_rowid => l_v_rowid ,
5993: x_clchgsnd_id => l_n_clchgsnd_id ,
5994: x_award_id => l_n_award_id ,

Line 6054: CLOSE c_igf_sl_clchsn_dtls;

6050: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6051: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
6052: );
6053: ELSE
6054: CLOSE c_igf_sl_clchsn_dtls;
6055: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
6056: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6057: p_v_string => ' Change record is updated ' ||
6058: ' Change_field_code : ' ||'DISB_DATE' ||

Line 6055: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);

6051: p_v_string => ' validation of the Change record successful for Change send id: ' ||l_n_clchgsnd_id
6052: );
6053: ELSE
6054: CLOSE c_igf_sl_clchsn_dtls;
6055: rec_c_igf_sl_clchsn_dtls := get_sl_clchsn_dtls ( p_rowid => l_v_rowid);
6056: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6057: p_v_string => ' Change record is updated ' ||
6058: ' Change_field_code : ' ||'DISB_DATE' ||
6059: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||

Line 6063: igf_sl_clchsn_dtls_pkg.update_row

6059: ' Change record type : ' ||'10 - Disbursement Notification / Change' ||
6060: ' Change code : ' ||'A - Full or Partial Cancellation ' ||
6061: ' new disb date : ' || l_d_new_disb_date
6062: );
6063: igf_sl_clchsn_dtls_pkg.update_row
6064: (
6065: x_rowid => l_v_rowid ,
6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

6062: );
6063: igf_sl_clchsn_dtls_pkg.update_row
6064: (
6065: x_rowid => l_v_rowid ,
6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

6063: igf_sl_clchsn_dtls_pkg.update_row
6064: (
6065: x_rowid => l_v_rowid ,
6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

6064: (
6065: x_rowid => l_v_rowid ,
6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

6065: x_rowid => l_v_rowid ,
6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,

Line 6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

6066: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

6067: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

6068: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6069: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

6070: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

6071: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,

Line 6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

6072: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

6073: x_status_code => 'R' ,
6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

6074: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6075: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

6076: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

6077: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,

Line 6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

6078: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

6079: x_new_date => l_d_new_disb_date ,
6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

6080: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6081: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6088: x_disbursement_revised_date => l_d_new_disb_date ,

Line 6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

6082: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6088: x_disbursement_revised_date => l_d_new_disb_date ,
6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

6083: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6084: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6088: x_disbursement_revised_date => l_d_new_disb_date ,
6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

6085: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6088: x_disbursement_revised_date => l_d_new_disb_date ,
6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

6086: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6088: x_disbursement_revised_date => l_d_new_disb_date ,
6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

6087: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6088: x_disbursement_revised_date => l_d_new_disb_date ,
6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

6088: x_disbursement_revised_date => l_d_new_disb_date ,
6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

6089: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

6090: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

6091: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

6092: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

6093: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

6094: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6102: x_validation_edit_txt => NULL ,

Line 6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

6095: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6102: x_validation_edit_txt => NULL ,
6103: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

6096: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6102: x_validation_edit_txt => NULL ,
6103: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
6104: );

Line 6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

6097: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6098: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6102: x_validation_edit_txt => NULL ,
6103: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
6104: );
6105: -- invoke validation edits to validate the change record. The validation checks if

Line 6103: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

6099: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6100: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6101: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6102: x_validation_edit_txt => NULL ,
6103: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
6104: );
6105: -- invoke validation edits to validate the change record. The validation checks if
6106: -- all the required fields are populated or not for a change record
6107: log_to_fnd(p_v_module => ' create_disb_chg_rec ',

Line 6108: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

6104: );
6105: -- invoke validation edits to validate the change record. The validation checks if
6106: -- all the required fields are populated or not for a change record
6107: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6108: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
6109: );
6110: l_v_message_name := NULL;
6111: l_b_return_status := TRUE;
6112: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

Line 6112: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,

6108: p_v_string => ' validating the Change record for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
6109: );
6110: l_v_message_name := NULL;
6111: l_b_return_status := TRUE;
6112: igf_sl_cl_chg_prc.validate_chg (p_n_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id,
6113: p_b_return_status => l_b_return_status,
6114: p_v_message_name => l_v_message_name,
6115: p_t_message_tokens => l_d_message_tokens
6116: );

Line 6130: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

6126: fnd_message.set_token(l_d_message_tokens(token_counter).token_name, l_d_message_tokens(token_counter).token_value);
6127: END LOOP;
6128: */
6129: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6130: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
6131: );
6132: log_to_fnd(p_v_module => ' create_disb_chg_rec',
6133: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
6134: );

Line 6133: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'

6129: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6130: p_v_string => ' validation of the Change record failed for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
6131: );
6132: log_to_fnd(p_v_module => ' create_disb_chg_rec',
6133: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
6134: );
6135: igf_sl_clchsn_dtls_pkg.update_row
6136: (
6137: x_rowid => l_v_rowid ,

Line 6135: igf_sl_clchsn_dtls_pkg.update_row

6131: );
6132: log_to_fnd(p_v_module => ' create_disb_chg_rec',
6133: p_v_string => ' Invoking igf_sl_clchsn_dtls_pkg.update_row to update the status to Not Ready to Send'
6134: );
6135: igf_sl_clchsn_dtls_pkg.update_row
6136: (
6137: x_rowid => l_v_rowid ,
6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

Line 6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,

6134: );
6135: igf_sl_clchsn_dtls_pkg.update_row
6136: (
6137: x_rowid => l_v_rowid ,
6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

Line 6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,

6135: igf_sl_clchsn_dtls_pkg.update_row
6136: (
6137: x_rowid => l_v_rowid ,
6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

Line 6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,

6136: (
6137: x_rowid => l_v_rowid ,
6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

Line 6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,

6137: x_rowid => l_v_rowid ,
6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,

Line 6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,

6138: x_clchgsnd_id => rec_c_igf_sl_clchsn_dtls.clchgsnd_id ,
6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

Line 6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,

6139: x_award_id => rec_c_igf_sl_clchsn_dtls.award_id ,
6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

Line 6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,

6140: x_loan_number_txt => rec_c_igf_sl_clchsn_dtls.loan_number_txt ,
6141: x_cl_version_code => rec_c_igf_sl_clchsn_dtls.cl_version_code ,
6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

Line 6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,

6142: x_change_field_code => rec_c_igf_sl_clchsn_dtls.change_field_code ,
6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

Line 6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,

6143: x_change_record_type_txt => rec_c_igf_sl_clchsn_dtls.change_record_type_txt ,
6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,

Line 6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,

6144: x_change_code_txt => rec_c_igf_sl_clchsn_dtls.change_code_txt ,
6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

Line 6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,

6145: x_status_code => 'N' ,
6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

Line 6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,

6146: x_status_date => rec_c_igf_sl_clchsn_dtls.status_date ,
6147: x_response_status_code => rec_c_igf_sl_clchsn_dtls.response_status_code ,
6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

Line 6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,

6148: x_old_value_txt => rec_c_igf_sl_clchsn_dtls.old_value_txt ,
6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

Line 6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,

6149: x_new_value_txt => rec_c_igf_sl_clchsn_dtls.new_value_txt ,
6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,

Line 6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,

6150: x_old_date => rec_c_igf_sl_clchsn_dtls.old_date ,
6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

Line 6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,

6151: x_new_date => l_d_new_disb_date ,
6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

Line 6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,

6152: x_old_amt => rec_c_igf_sl_clchsn_dtls.old_amt ,
6153: x_new_amt => rec_c_igf_sl_clchsn_dtls.new_amt ,
6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6160: x_disbursement_revised_date => l_d_new_disb_date ,

Line 6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,

6154: x_disbursement_number => rec_c_igf_sl_clchsn_dtls.disbursement_number ,
6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6160: x_disbursement_revised_date => l_d_new_disb_date ,
6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

Line 6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,

6155: x_disbursement_date => rec_c_igf_sl_clchsn_dtls.disbursement_date ,
6156: x_change_issue_code => rec_c_igf_sl_clchsn_dtls.change_issue_code ,
6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6160: x_disbursement_revised_date => l_d_new_disb_date ,
6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

Line 6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,

6157: x_disbursement_cancel_date => TRUNC(SYSDATE) ,
6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6160: x_disbursement_revised_date => l_d_new_disb_date ,
6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

Line 6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,

6158: x_disbursement_cancel_amt => rec_c_igf_sl_clchsn_dtls.disbursement_cancel_amt ,
6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6160: x_disbursement_revised_date => l_d_new_disb_date ,
6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

Line 6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,

6159: x_disbursement_revised_amt => rec_c_igf_sl_clchsn_dtls.disbursement_revised_amt ,
6160: x_disbursement_revised_date => l_d_new_disb_date ,
6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

Line 6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,

6160: x_disbursement_revised_date => l_d_new_disb_date ,
6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

Line 6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,

6161: x_disbursement_reissue_code => rec_c_igf_sl_clchsn_dtls.disbursement_reissue_code ,
6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

Line 6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,

6162: x_disbursement_reinst_code => rec_c_igf_sl_clchsn_dtls.disbursement_reinst_code ,
6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

Line 6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,

6163: x_disbursement_return_amt => rec_c_igf_sl_clchsn_dtls.disbursement_return_amt ,
6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

Line 6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,

6164: x_disbursement_return_date => rec_c_igf_sl_clchsn_dtls.disbursement_return_date ,
6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

Line 6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,

6165: x_disbursement_return_code => rec_c_igf_sl_clchsn_dtls.disbursement_return_code ,
6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

Line 6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,

6166: x_post_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_amt ,
6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6174: x_validation_edit_txt => fnd_message.get ,

Line 6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,

6167: x_post_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_date ,
6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6174: x_validation_edit_txt => fnd_message.get ,
6175: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

Line 6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,

6168: x_post_with_disb_return_code => rec_c_igf_sl_clchsn_dtls.post_with_disb_return_code ,
6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6174: x_validation_edit_txt => fnd_message.get ,
6175: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
6176: );

Line 6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,

6169: x_prev_with_disb_return_amt => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_amt ,
6170: x_prev_with_disb_return_date => rec_c_igf_sl_clchsn_dtls.prev_with_disb_return_date ,
6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6174: x_validation_edit_txt => fnd_message.get ,
6175: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
6176: );
6177: log_to_fnd(p_v_module => ' create_disb_chg_rec',

Line 6175: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt

6171: x_school_use_txt => rec_c_igf_sl_clchsn_dtls.school_use_txt ,
6172: x_lender_use_txt => rec_c_igf_sl_clchsn_dtls.lender_use_txt ,
6173: x_guarantor_use_txt => rec_c_igf_sl_clchsn_dtls.guarantor_use_txt ,
6174: x_validation_edit_txt => fnd_message.get ,
6175: x_send_record_txt => rec_c_igf_sl_clchsn_dtls.send_record_txt
6176: );
6177: log_to_fnd(p_v_module => ' create_disb_chg_rec',
6178: p_v_string => ' updated the status of change send record to Not Ready to Send'
6179: );

Line 6184: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id

6180: END IF;
6181: p_b_return_status := TRUE;
6182: p_v_message_name := NULL;
6183: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6184: p_v_string => ' validation of the Change record successful for Change send id: ' ||rec_c_igf_sl_clchsn_dtls.clchgsnd_id
6185: );
6186: END IF;
6187: -- if changes have been reverted back
6188: ELSIF l_d_resp_disb_date = l_d_new_disb_date AND

Line 6205: 'FROM igf_sl_clchsn_dtls chdt ' ||

6201: ' change_field_code : ' || 'DISB_DATE'
6202: );
6203: -- verify if the existing change record is to be deleted
6204: l_v_sqlstmt := 'SELECT chdt.ROWID row_id ' ||
6205: 'FROM igf_sl_clchsn_dtls chdt ' ||
6206: 'WHERE chdt.award_id = :cp_n_award_id ' ||
6207: 'AND chdt.disbursement_number = :cp_n_dib_num ' ||
6208: 'AND chdt.old_date = :cp_d_new_disb_dt ' ||
6209: 'AND chdt.change_field_code = ''DISB_DATE'' ' ||

Line 6214: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;

6210: 'AND chdt.change_code_txt = ''A'' ' ||
6211: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
6212: 'AND chdt.change_record_type_txt = ''10'' ';
6213:
6214: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
6215: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
6216: IF c_igf_sl_clchsn_dtls%FOUND THEN
6217: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6218: p_v_string => ' Change record to be deleted ' ||

Line 6215: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;

6211: 'AND chdt.status_code IN (''R'',''N'',''D'') ' ||
6212: 'AND chdt.change_record_type_txt = ''10'' ';
6213:
6214: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
6215: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
6216: IF c_igf_sl_clchsn_dtls%FOUND THEN
6217: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6218: p_v_string => ' Change record to be deleted ' ||
6219: ' Award Id : '||l_n_award_id ||

Line 6216: IF c_igf_sl_clchsn_dtls%FOUND THEN

6212: 'AND chdt.change_record_type_txt = ''10'' ';
6213:
6214: OPEN c_igf_sl_clchsn_dtls FOR l_v_sqlstmt USING l_n_award_id,l_n_disb_num,l_d_new_disb_date;
6215: FETCH c_igf_sl_clchsn_dtls INTO l_v_rowid;
6216: IF c_igf_sl_clchsn_dtls%FOUND THEN
6217: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6218: p_v_string => ' Change record to be deleted ' ||
6219: ' Award Id : '||l_n_award_id ||
6220: ' Disb Num : '||l_n_disb_num ||

Line 6223: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);

6219: ' Award Id : '||l_n_award_id ||
6220: ' Disb Num : '||l_n_disb_num ||
6221: ' New disb Date: '||l_d_new_disb_date
6222: );
6223: igf_sl_clchsn_dtls_pkg.delete_row(x_rowid => l_v_rowid);
6224: log_to_fnd(p_v_module => ' create_disb_chg_rec ',
6225: p_v_string => ' Change record deleted Successfully' ||
6226: ' Award Id : '||l_n_award_id ||
6227: ' Disb Num : '||l_n_disb_num ||

Line 6231: CLOSE c_igf_sl_clchsn_dtls;

6227: ' Disb Num : '||l_n_disb_num ||
6228: ' New disb Date: '||l_d_new_disb_date
6229: );
6230: END IF;
6231: CLOSE c_igf_sl_clchsn_dtls;
6232: p_b_return_status := TRUE;
6233: p_v_message_name := NULL;
6234: END IF;
6235: -- end of code logic for Change Type = Cancellation

Line 6297: RETURN igf_sl_clchsn_dtls%ROWTYPE AS

6293: END IF;
6294: END log_to_fnd;
6295:
6296: FUNCTION get_sl_clchsn_dtls ( p_rowid ROWID)
6297: RETURN igf_sl_clchsn_dtls%ROWTYPE AS
6298: ------------------------------------------------------------------
6299: --Created by : Sanil Madathil, Oracle IDC
6300: --Date created: 18 October 2004
6301: --

Line 6304: -- Function : Private procedure which returns igf_sl_clchsn_dtls%ROWTYPE

6300: --Date created: 18 October 2004
6301: --
6302: -- Purpose:
6303: -- Invoked : from within procedures in this package
6304: -- Function : Private procedure which returns igf_sl_clchsn_dtls%ROWTYPE
6305: --
6306: -- Parameters : p_rowid : IN parameter. Required.
6307: --
6308: --

Line 6316: FROM igf_sl_clchsn_dtls chdt

6312: --Who When What
6313: ------------------------------------------------------------------
6314: CURSOR c_sl_clchsn_dtls (cp_rowid ROWID) IS
6315: SELECT chdt.*
6316: FROM igf_sl_clchsn_dtls chdt
6317: WHERE rowid = p_rowid;
6318:
6319: rec_sl_clchsn_dtls c_sl_clchsn_dtls%ROWTYPE;
6320: BEGIN