DBA Data[Home] [Help]

APPS.IGS_FI_CC_PMT dependencies on IGS_FI_GEN_GL

Line 112: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','PERSON')||': '||l_c_pnum);

108: FETCH c_pers INTO l_c_pnum;
109: CLOSE c_pers;
110:
111: -- Log the person number
112: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','PERSON')||': '||l_c_pnum);
113:
114: -- Update the OSS Tables (Credits, Admissions Applications Request)
115: -- only if the credit card status is changed to failure or success
116: -- from 'Pending'

Line 124: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','RECEIPT_NUMBER')||': '||p_r_crd_row.credit_number);

120:
121: IF p_r_crd_row.party_id IS NOT NULL THEN
122:
123: -- Log the Receipt Number
124: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','RECEIPT_NUMBER')||': '||p_r_crd_row.credit_number);
125:
126: IF l_flag THEN
127: -- Update the credit card status in the Credits Table
128: SAVEPOINT sp_crd;

Line 205: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','ADM_APPL_ID')||': '||p_r_ad_app_row.app_req_id);

201:
202: ELSIF p_r_ad_app_row.person_id IS NOT NULL THEN
203:
204: -- Log the Admission Application Id
205: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','ADM_APPL_ID')||': '||p_r_ad_app_row.app_req_id);
206:
207: IF l_flag THEN
208: SAVEPOINT sp_adm;
209: BEGIN

Line 250: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','CC_STATUS')||': '||

246: END IF;
247:
248: IF NOT l_b_exception_flag THEN
249: -- Log the Credit Card Status of the person
250: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','CC_STATUS')||': '||
251: igs_fi_gen_gl.get_lkp_meaning('IGS_FI_CREDIT_CARD_STATUS',l_c_cc_status));
252: fnd_file.new_line(fnd_file.log);
253: END IF;
254:

Line 251: igs_fi_gen_gl.get_lkp_meaning('IGS_FI_CREDIT_CARD_STATUS',l_c_cc_status));

247:
248: IF NOT l_b_exception_flag THEN
249: -- Log the Credit Card Status of the person
250: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','CC_STATUS')||': '||
251: igs_fi_gen_gl.get_lkp_meaning('IGS_FI_CREDIT_CARD_STATUS',l_c_cc_status));
252: fnd_file.new_line(fnd_file.log);
253: END IF;
254:
255: END local_upd;