DBA Data[Home] [Help]

APPS.IGS_FI_PRC_DISC_SUA dependencies on FND_MESSAGE

Line 181: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PERSON_ID');

177: OPEN cur_person_id(p_person_id);
178: FETCH cur_person_id INTO rec_cur_person_id;
179:
180: IF cur_person_id%NOTFOUND THEN
181: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PERSON_ID');
182: fnd_file.put_line(fnd_file.log, FND_MESSAGE.GET);
183: l_flag := FALSE;
184: END IF;
185: CLOSE cur_person_id;

Line 182: fnd_file.put_line(fnd_file.log, FND_MESSAGE.GET);

178: FETCH cur_person_id INTO rec_cur_person_id;
179:
180: IF cur_person_id%NOTFOUND THEN
181: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PERSON_ID');
182: fnd_file.put_line(fnd_file.log, FND_MESSAGE.GET);
183: l_flag := FALSE;
184: END IF;
185: CLOSE cur_person_id;
186: ELSE

Line 197: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');

193: OPEN cur_person_id_group(p_person_id_grp );
194: FETCH cur_person_id_group INTO l_person_grp_cd;
195:
196: IF cur_person_id_group%NOTFOUND THEN
197: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
198: FND_MESSAGE.SET_TOKEN('PARAMETER','P_PERSON_ID_GRP');
199: fnd_file.put_line(fnd_file.log, fnd_message.get);
200: l_flag := FALSE;
201: END IF;

Line 198: FND_MESSAGE.SET_TOKEN('PARAMETER','P_PERSON_ID_GRP');

194: FETCH cur_person_id_group INTO l_person_grp_cd;
195:
196: IF cur_person_id_group%NOTFOUND THEN
197: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
198: FND_MESSAGE.SET_TOKEN('PARAMETER','P_PERSON_ID_GRP');
199: fnd_file.put_line(fnd_file.log, fnd_message.get);
200: l_flag := FALSE;
201: END IF;
202: CLOSE cur_person_id_group;

Line 199: fnd_file.put_line(fnd_file.log, fnd_message.get);

195:
196: IF cur_person_id_group%NOTFOUND THEN
197: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
198: FND_MESSAGE.SET_TOKEN('PARAMETER','P_PERSON_ID_GRP');
199: fnd_file.put_line(fnd_file.log, fnd_message.get);
200: l_flag := FALSE;
201: END IF;
202: CLOSE cur_person_id_group;
203: ELSE

Line 212: FND_MESSAGE.SET_NAME('IGS','IGS_FI_PRS_OR_PRSIDGRP');

208: -- Validate if the Person Id and the Person ID Group both are not passed
209: -- simultaneously
210: IF ((p_person_id_grp IS NOT NULL) AND (p_person_id IS NOT NULL)) THEN
211: -- Return FALSE if both the parameters are NOT NULL.
212: FND_MESSAGE.SET_NAME('IGS','IGS_FI_PRS_OR_PRSIDGRP');
213: fnd_file.put_line(fnd_file.log, fnd_message.get);
214: l_flag := FALSE;
215: END IF;
216:

Line 213: fnd_file.put_line(fnd_file.log, fnd_message.get);

209: -- simultaneously
210: IF ((p_person_id_grp IS NOT NULL) AND (p_person_id IS NOT NULL)) THEN
211: -- Return FALSE if both the parameters are NOT NULL.
212: FND_MESSAGE.SET_NAME('IGS','IGS_FI_PRS_OR_PRSIDGRP');
213: fnd_file.put_line(fnd_file.log, fnd_message.get);
214: l_flag := FALSE;
215: END IF;
216:
217:

Line 224: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_FEE_CAL_TYPE');

220: p_fee_ci_sequence_number);
221: FETCH cur_fee_ci INTO l_var;
222:
223: IF cur_fee_ci%NOTFOUND THEN
224: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_FEE_CAL_TYPE');
225: fnd_file.put_line(fnd_file.log,fnd_message.get);
226: l_flag := FALSE;
227: END IF;
228: CLOSE cur_fee_ci;

Line 225: fnd_file.put_line(fnd_file.log,fnd_message.get);

221: FETCH cur_fee_ci INTO l_var;
222:
223: IF cur_fee_ci%NOTFOUND THEN
224: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_FEE_CAL_TYPE');
225: fnd_file.put_line(fnd_file.log,fnd_message.get);
226: l_flag := FALSE;
227: END IF;
228: CLOSE cur_fee_ci;
229:

Line 237: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');

233: FETCH cur_balance_lkup_type INTO l_balance_type_meaning;
234:
235:
236: IF p_balance_type IS NOT NULL AND cur_balance_lkup_type%NOTFOUND THEN
237: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
238: FND_MESSAGE.SET_TOKEN('PARAMETER','P_BALANCE_TYPE');
239: fnd_file.put_line(fnd_file.log, fnd_message.get);
240: l_flag := FALSE;
241: END IF;

Line 238: FND_MESSAGE.SET_TOKEN('PARAMETER','P_BALANCE_TYPE');

234:
235:
236: IF p_balance_type IS NOT NULL AND cur_balance_lkup_type%NOTFOUND THEN
237: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
238: FND_MESSAGE.SET_TOKEN('PARAMETER','P_BALANCE_TYPE');
239: fnd_file.put_line(fnd_file.log, fnd_message.get);
240: l_flag := FALSE;
241: END IF;
242: CLOSE cur_balance_lkup_type;

Line 239: fnd_file.put_line(fnd_file.log, fnd_message.get);

235:
236: IF p_balance_type IS NOT NULL AND cur_balance_lkup_type%NOTFOUND THEN
237: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
238: FND_MESSAGE.SET_TOKEN('PARAMETER','P_BALANCE_TYPE');
239: fnd_file.put_line(fnd_file.log, fnd_message.get);
240: l_flag := FALSE;
241: END IF;
242: CLOSE cur_balance_lkup_type;
243:

Line 251: FND_MESSAGE.SET_NAME('IGS','IGS_EN_DISCONT_REAS_CD_CLOS');

247: FETCH cur_dcnt_reason_cd INTO l_dcnt_reason_cd_desc;
248:
249:
250: IF cur_dcnt_reason_cd%NOTFOUND THEN
251: FND_MESSAGE.SET_NAME('IGS','IGS_EN_DISCONT_REAS_CD_CLOS');
252: fnd_file.put_line(fnd_file.log, fnd_message.get);
253: l_flag := FALSE;
254: END IF;
255: CLOSE cur_dcnt_reason_cd;

Line 252: fnd_file.put_line(fnd_file.log, fnd_message.get);

248:
249:
250: IF cur_dcnt_reason_cd%NOTFOUND THEN
251: FND_MESSAGE.SET_NAME('IGS','IGS_EN_DISCONT_REAS_CD_CLOS');
252: fnd_file.put_line(fnd_file.log, fnd_message.get);
253: l_flag := FALSE;
254: END IF;
255: CLOSE cur_dcnt_reason_cd;
256:

Line 262: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');

258: OPEN cur_test_run(p_test_run);
259: FETCH cur_test_run INTO l_test_run;
260:
261: IF cur_test_run%NOTFOUND THEN
262: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
263: FND_MESSAGE.SET_TOKEN('PARAMETER','P_TEST_RUN');
264: fnd_file.put_line(fnd_file.log, fnd_message.get);
265: l_flag := FALSE;
266: END IF;

Line 263: FND_MESSAGE.SET_TOKEN('PARAMETER','P_TEST_RUN');

259: FETCH cur_test_run INTO l_test_run;
260:
261: IF cur_test_run%NOTFOUND THEN
262: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
263: FND_MESSAGE.SET_TOKEN('PARAMETER','P_TEST_RUN');
264: fnd_file.put_line(fnd_file.log, fnd_message.get);
265: l_flag := FALSE;
266: END IF;
267: CLOSE cur_test_run;

Line 264: fnd_file.put_line(fnd_file.log, fnd_message.get);

260:
261: IF cur_test_run%NOTFOUND THEN
262: FND_MESSAGE.SET_NAME('IGS','IGS_FI_INVALID_PARAMETER');
263: FND_MESSAGE.SET_TOKEN('PARAMETER','P_TEST_RUN');
264: fnd_file.put_line(fnd_file.log, fnd_message.get);
265: l_flag := FALSE;
266: END IF;
267: CLOSE cur_test_run;
268: fnd_file.new_line(fnd_file.log);

Line 530: fnd_message.set_name('IGS','IGS_FI_ANC_LOG_PARM');

526: igs_ge_gen_003.set_org_id(NULL);
527:
528: retcode:= 0;
529: -- logging input parameters
530: fnd_message.set_name('IGS','IGS_FI_ANC_LOG_PARM');
531: fnd_file.put_line(fnd_file.log,fnd_message.get);
532:
533: fnd_file.put(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','PERSON')|| ': ');
534: fnd_file.put_line(fnd_file.log,igs_fi_gen_008.get_party_number(p_person_id));

Line 531: fnd_file.put_line(fnd_file.log,fnd_message.get);

527:
528: retcode:= 0;
529: -- logging input parameters
530: fnd_message.set_name('IGS','IGS_FI_ANC_LOG_PARM');
531: fnd_file.put_line(fnd_file.log,fnd_message.get);
532:
533: fnd_file.put(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','PERSON')|| ': ');
534: fnd_file.put_line(fnd_file.log,igs_fi_gen_008.get_party_number(p_person_id));
535:

Line 562: fnd_message.set_name('IGS',l_v_message_name);

558: igs_fi_com_rec_interface.chk_manage_account( p_v_manage_acc => l_v_manage_acc,
559: p_v_message_name => l_v_message_name
560: );
561: IF (l_v_manage_acc = 'OTHER') OR (l_v_manage_acc IS NULL) THEN
562: fnd_message.set_name('IGS',l_v_message_name);
563: fnd_file.put_line(fnd_file.log,fnd_message.get());
564: fnd_file.new_line(fnd_file.log);
565: retcode := 2;
566: RETURN;

Line 563: fnd_file.put_line(fnd_file.log,fnd_message.get());

559: p_v_message_name => l_v_message_name
560: );
561: IF (l_v_manage_acc = 'OTHER') OR (l_v_manage_acc IS NULL) THEN
562: fnd_message.set_name('IGS',l_v_message_name);
563: fnd_file.put_line(fnd_file.log,fnd_message.get());
564: fnd_file.new_line(fnd_file.log);
565: retcode := 2;
566: RETURN;
567: END IF;

Line 598: FND_MESSAGE.SET_NAME('IGS', l_message);

594: p_ret_cal_type => l_ld_cal_type,
595: p_ret_ci_sequence_number=> l_ld_ci_sequence_number,
596: p_message_name => l_message
597: ) = FALSE THEN
598: FND_MESSAGE.SET_NAME('IGS', l_message);
599: fnd_file.put_line(fnd_file.log,fnd_message.get);
600: retcode:=2;
601: RETURN;
602: END IF;

Line 599: fnd_file.put_line(fnd_file.log,fnd_message.get);

595: p_ret_ci_sequence_number=> l_ld_ci_sequence_number,
596: p_message_name => l_message
597: ) = FALSE THEN
598: FND_MESSAGE.SET_NAME('IGS', l_message);
599: fnd_file.put_line(fnd_file.log,fnd_message.get);
600: retcode:=2;
601: RETURN;
602: END IF;
603:

Line 643: FND_MESSAGE.SET_NAME('IGS','IGS_FI_CANNOT_CRT_TXN');

639: p_d_last_conversion_date => l_last_conversion_date,
640: p_n_version_number => l_version_number );
641: IF l_version_number = 0 THEN
642: fnd_file.new_line(fnd_file.log);
643: FND_MESSAGE.SET_NAME('IGS','IGS_FI_CANNOT_CRT_TXN');
644: fnd_file.put_line(fnd_file.log, fnd_message.get);
645: retcode:=2;
646: RETURN;
647: END IF;

Line 644: fnd_file.put_line(fnd_file.log, fnd_message.get);

640: p_n_version_number => l_version_number );
641: IF l_version_number = 0 THEN
642: fnd_file.new_line(fnd_file.log);
643: FND_MESSAGE.SET_NAME('IGS','IGS_FI_CANNOT_CRT_TXN');
644: fnd_file.put_line(fnd_file.log, fnd_message.get);
645: retcode:=2;
646: RETURN;
647: END IF;
648: ELSIF p_balance_type = 'FEE' THEN

Line 660: FND_MESSAGE.SET_NAME('IGS','IGS_FI_WILL_DROP_UNITS');

656:
657: -- Displaying appropriate message in the log file based on the
658: -- Test Run Parameter
659: IF p_test_run = g_yes_ind THEN
660: FND_MESSAGE.SET_NAME('IGS','IGS_FI_WILL_DROP_UNITS');
661: fnd_file.put_line(fnd_file.log,fnd_message.get);
662: ELSE
663: FND_MESSAGE.SET_NAME('IGS','IGS_FI_HAVE_DROP_UNITS');
664: fnd_file.put_line(fnd_file.log,fnd_message.get );

Line 661: fnd_file.put_line(fnd_file.log,fnd_message.get);

657: -- Displaying appropriate message in the log file based on the
658: -- Test Run Parameter
659: IF p_test_run = g_yes_ind THEN
660: FND_MESSAGE.SET_NAME('IGS','IGS_FI_WILL_DROP_UNITS');
661: fnd_file.put_line(fnd_file.log,fnd_message.get);
662: ELSE
663: FND_MESSAGE.SET_NAME('IGS','IGS_FI_HAVE_DROP_UNITS');
664: fnd_file.put_line(fnd_file.log,fnd_message.get );
665: END IF;

Line 663: FND_MESSAGE.SET_NAME('IGS','IGS_FI_HAVE_DROP_UNITS');

659: IF p_test_run = g_yes_ind THEN
660: FND_MESSAGE.SET_NAME('IGS','IGS_FI_WILL_DROP_UNITS');
661: fnd_file.put_line(fnd_file.log,fnd_message.get);
662: ELSE
663: FND_MESSAGE.SET_NAME('IGS','IGS_FI_HAVE_DROP_UNITS');
664: fnd_file.put_line(fnd_file.log,fnd_message.get );
665: END IF;
666:
667: --Bug 5123583, Removed the logic to display header like person number, enrollement date etc. used in the log file.

Line 664: fnd_file.put_line(fnd_file.log,fnd_message.get );

660: FND_MESSAGE.SET_NAME('IGS','IGS_FI_WILL_DROP_UNITS');
661: fnd_file.put_line(fnd_file.log,fnd_message.get);
662: ELSE
663: FND_MESSAGE.SET_NAME('IGS','IGS_FI_HAVE_DROP_UNITS');
664: fnd_file.put_line(fnd_file.log,fnd_message.get );
665: END IF;
666:
667: --Bug 5123583, Removed the logic to display header like person number, enrollement date etc. used in the log file.
668:

Line 840: fnd_message.set_name('IGS', 'IGS_FI_PERSON_NAME');

836:
837: --Printing output in the log file.
838: fnd_file.put_line(fnd_file.log, igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','PERSON')||': '||l_person_number);
839:
840: fnd_message.set_name('IGS', 'IGS_FI_PERSON_NAME');
841: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_person_name);
842:
843: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_TRIGGER_GROUP','COURSE')|| ': ' || rec_chrgs.course_cd);
844:

Line 841: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_person_name);

837: --Printing output in the log file.
838: fnd_file.put_line(fnd_file.log, igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','PERSON')||': '||l_person_number);
839:
840: fnd_message.set_name('IGS', 'IGS_FI_PERSON_NAME');
841: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_person_name);
842:
843: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_TRIGGER_GROUP','COURSE')|| ': ' || rec_chrgs.course_cd);
844:
845: fnd_message.set_name('IGS', 'IGS_FI_UNIT_DTLS');

Line 845: fnd_message.set_name('IGS', 'IGS_FI_UNIT_DTLS');

841: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_person_name);
842:
843: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_TRIGGER_GROUP','COURSE')|| ': ' || rec_chrgs.course_cd);
844:
845: fnd_message.set_name('IGS', 'IGS_FI_UNIT_DTLS');
846: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_str_enrl);
847:
848: l_str_enrl := NULL;
849:

Line 846: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_str_enrl);

842:
843: fnd_file.put_line(fnd_file.log,igs_fi_gen_gl.get_lkp_meaning('IGS_FI_TRIGGER_GROUP','COURSE')|| ': ' || rec_chrgs.course_cd);
844:
845: fnd_message.set_name('IGS', 'IGS_FI_UNIT_DTLS');
846: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_str_enrl);
847:
848: l_str_enrl := NULL;
849:
850: fnd_message.set_name('IGS', 'IGS_FI_ENR_DATE');

Line 850: fnd_message.set_name('IGS', 'IGS_FI_ENR_DATE');

846: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || l_str_enrl);
847:
848: l_str_enrl := NULL;
849:
850: fnd_message.set_name('IGS', 'IGS_FI_ENR_DATE');
851: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || TRUNC(l_enr_dtls.enrolled_dt));
852:
853: --for separating one person details with the others
854: fnd_file.new_line(fnd_file.log);

Line 851: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || TRUNC(l_enr_dtls.enrolled_dt));

847:
848: l_str_enrl := NULL;
849:
850: fnd_message.set_name('IGS', 'IGS_FI_ENR_DATE');
851: fnd_file.put_line(fnd_file.log, fnd_message.get || ': ' || TRUNC(l_enr_dtls.enrolled_dt));
852:
853: --for separating one person details with the others
854: fnd_file.new_line(fnd_file.log);
855: END IF;

Line 863: fnd_message.set_name('IGS','IGS_FI_PP_NO_UNIT_DROP');

859: END IF;
860:
861: EXCEPTION
862: WHEN e_skip_record THEN
863: fnd_message.set_name('IGS','IGS_FI_PP_NO_UNIT_DROP');
864: fnd_file.new_line(fnd_file.log);
865: fnd_file.put_line(fnd_file.log,l_str||' - '||fnd_message.get);
866: fnd_file.new_line(fnd_file.log);
867: END;

Line 865: fnd_file.put_line(fnd_file.log,l_str||' - '||fnd_message.get);

861: EXCEPTION
862: WHEN e_skip_record THEN
863: fnd_message.set_name('IGS','IGS_FI_PP_NO_UNIT_DROP');
864: fnd_file.new_line(fnd_file.log);
865: fnd_file.put_line(fnd_file.log,l_str||' - '||fnd_message.get);
866: fnd_file.new_line(fnd_file.log);
867: END;
868: END IF; -- end of condition v_tab_chrgs_rec.EXISTS(l_n_cntr)
869: END LOOP;

Line 876: FND_MESSAGE.SET_NAME('IGS','IGS_FI_NO_DROP_UNITS');

872: -- If there were no units identified for dropping, then log the appropriate message in the
873: -- log file of the concurrent manager.
874: IF l_cnt = 0 THEN
875: fnd_file.new_line(fnd_file.log);
876: FND_MESSAGE.SET_NAME('IGS','IGS_FI_NO_DROP_UNITS');
877: fnd_file.put_line(fnd_file.log, fnd_message.get);
878: END IF;
879:
880: -- If the test run flag is not Y, then the transactions need to be committed else

Line 877: fnd_file.put_line(fnd_file.log, fnd_message.get);

873: -- log file of the concurrent manager.
874: IF l_cnt = 0 THEN
875: fnd_file.new_line(fnd_file.log);
876: FND_MESSAGE.SET_NAME('IGS','IGS_FI_NO_DROP_UNITS');
877: fnd_file.put_line(fnd_file.log, fnd_message.get);
878: END IF;
879:
880: -- If the test run flag is not Y, then the transactions need to be committed else
881: -- rollback to the savepoint

Line 892: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION');

888: EXCEPTION
889: WHEN OTHERS THEN
890: ROLLBACK TO s_disc_drop_units;
891: retcode := 2;
892: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION');
893: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;
894: END drop_disc_sua_non_payment;
895: END igs_fi_prc_disc_sua;