DBA Data[Home] [Help]

APPS.IGS_FI_ACCT_STP_CNV dependencies on FND_MESSAGE

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

330: l_org_id := NULL;
331: igs_ge_gen_003.set_org_id(l_org_id);
332: EXCEPTION
333: WHEN OTHERS THEN
334: fnd_file.put_line (fnd_file.log, fnd_message.get);
335: RETCODE:=2;
336: RETURN;
337: END;
338:

Line 346: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_REQ');

342: FETCH cur_ctrl INTO l_cur_ctrl;
343: --If no set up is done in System Options Form, message is logged in the log file and process completes with warning.
344: IF cur_ctrl%NOTFOUND THEN
345: CLOSE cur_ctrl;
346: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_REQ');
347: fnd_file.put_line(fnd_file.log,fnd_message.get);
348: retcode := 1;
349: RETURN;
350: ELSE--if record exists in igs_fi_control table...

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

343: --If no set up is done in System Options Form, message is logged in the log file and process completes with warning.
344: IF cur_ctrl%NOTFOUND THEN
345: CLOSE cur_ctrl;
346: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_REQ');
347: fnd_file.put_line(fnd_file.log,fnd_message.get);
348: retcode := 1;
349: RETURN;
350: ELSE--if record exists in igs_fi_control table...
351: CLOSE cur_ctrl;

Line 357: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_VALID');

353: --This process is intended to execute only when Oracle General Ledger is not installed in the system.
354: --Check if Oracle General Ledger is installed..
355: IF l_cur_ctrl.rec_installed = 'Y' THEN
356: --If yes, then log the error message in the logfile and the process completes with error.
357: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_VALID');
358: fnd_file.put_line(fnd_file.log,fnd_message.get);
359: retcode := 2;
360: RETURN;
361: END IF;

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

354: --Check if Oracle General Ledger is installed..
355: IF l_cur_ctrl.rec_installed = 'Y' THEN
356: --If yes, then log the error message in the logfile and the process completes with error.
357: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_VALID');
358: fnd_file.put_line(fnd_file.log,fnd_message.get);
359: retcode := 2;
360: RETURN;
361: END IF;
362:

Line 366: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_REQ');

362:
363: --This process is intended to for onetime usage only. Check if the value of acct_conv_flag in igs_fi_control_all is null.
364: --If this value is not null, then message is logged in the log file and process completes with warning.
365: IF l_cur_ctrl.acct_conv_flag IS NOT NULL THEN
366: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_REQ');
367: fnd_file.put_line(fnd_file.log,fnd_message.get);
368: retcode := 1;
369: RETURN;
370: END IF;

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

363: --This process is intended to for onetime usage only. Check if the value of acct_conv_flag in igs_fi_control_all is null.
364: --If this value is not null, then message is logged in the log file and process completes with warning.
365: IF l_cur_ctrl.acct_conv_flag IS NOT NULL THEN
366: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_NOT_REQ');
367: fnd_file.put_line(fnd_file.log,fnd_message.get);
368: retcode := 1;
369: RETURN;
370: END IF;
371: END IF;

Line 439: fnd_message.set_name('IGS','IGS_FI_FTCI_ACCT_REC_EXISTS');

435: --For a Fee Type Calendar Instance in context, if the user has already defined the Accounting details in the Account Table,
436: --(igs_fi_ftci_accts), log the error message in the log file, skip the current FTCI record and process the next one.
437: IF cur_chk_acct_rec_exists%FOUND THEN
438: CLOSE cur_chk_acct_rec_exists;
439: fnd_message.set_name('IGS','IGS_FI_FTCI_ACCT_REC_EXISTS');
440: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
441: RAISE skip;
442: END IF;
443: CLOSE cur_chk_acct_rec_exists;

Line 440: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);

436: --(igs_fi_ftci_accts), log the error message in the log file, skip the current FTCI record and process the next one.
437: IF cur_chk_acct_rec_exists%FOUND THEN
438: CLOSE cur_chk_acct_rec_exists;
439: fnd_message.set_name('IGS','IGS_FI_FTCI_ACCT_REC_EXISTS');
440: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
441: RAISE skip;
442: END IF;
443: CLOSE cur_chk_acct_rec_exists;
444:

Line 756: fnd_message.set_name('IGS','IGS_FI_ACCT_INCOMPLETE_SETUP');

752:
753: EXCEPTION
754: WHEN incomplete_setup THEN
755: --log the information message that the accounting setup is incomplete for the context FTCI.
756: fnd_message.set_name('IGS','IGS_FI_ACCT_INCOMPLETE_SETUP');
757: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
758: retcode := 1;
759: WHEN success THEN
760: --log the information message that the accounting setup is completed.

Line 757: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);

753: EXCEPTION
754: WHEN incomplete_setup THEN
755: --log the information message that the accounting setup is incomplete for the context FTCI.
756: fnd_message.set_name('IGS','IGS_FI_ACCT_INCOMPLETE_SETUP');
757: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
758: retcode := 1;
759: WHEN success THEN
760: --log the information message that the accounting setup is completed.
761: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_SUCCESS');

Line 761: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_SUCCESS');

757: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
758: retcode := 1;
759: WHEN success THEN
760: --log the information message that the accounting setup is completed.
761: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_SUCCESS');
762: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
763: WHEN skip THEN
764: NULL;
765: END;

Line 762: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);

758: retcode := 1;
759: WHEN success THEN
760: --log the information message that the accounting setup is completed.
761: fnd_message.set_name('IGS','IGS_FI_ACCT_CNV_PRC_SUCCESS');
762: fnd_file.put_line(fnd_file.log,l_v_message_text||RPAD(' ',6,' ')||': '||fnd_message.get);
763: WHEN skip THEN
764: NULL;
765: END;
766:

Line 817: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION')||SQLERRM;

813: EXCEPTION
814: WHEN OTHERS THEN
815: ROLLBACK;
816: retcode := 2;
817: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION')||SQLERRM;
818: igs_ge_msg_stack.conc_exception_hndl;
819:
820: END updt_ftci_acct_info;
821: