DBA Data[Home] [Help]

APPS.IGF_AW_COA_CALC dependencies on IGS_GE_MSG_STACK

Line 345: igs_ge_msg_stack.conc_exception_hndl;

341: fnd_message.set_token('NAME','IGF_AW_COA_CALC.ISCOALOCKED' || ' '|| SQLERRM);
342: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
343: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_coa_calc.iscoalocked.exception','sql error: '||SQLERRM);
344: END IF;
345: igs_ge_msg_stack.conc_exception_hndl;
346: app_exception.raise_exception;
347: END iscoalocked;
348:
349:

Line 421: igs_ge_msg_stack.conc_exception_hndl;

417: fnd_message.set_token('NAME','IGF_AW_COA_CALC.DELETE_COA' || ' '|| SQLERRM);
418: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
419: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_coa_calc.delete_coa.exception','sql error: '||SQLERRM);
420: END IF;
421: igs_ge_msg_stack.conc_exception_hndl;
422: app_exception.raise_exception;
423: END delete_coa;
424:
425:

Line 564: igs_ge_msg_stack.conc_exception_hndl;

560: fnd_message.set_token('NAME','IGF_AW_COA_CALC.POPULATE_SETUP_TABLE' || ' '|| SQLERRM);
561: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
562: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_coa_calc.populate_setup_table.exception','sql error message: '||SQLERRM);
563: END IF;
564: igs_ge_msg_stack.conc_exception_hndl;
565: app_exception.raise_exception;
566: END populate_setup_table;
567:
568:

Line 1655: igs_ge_msg_stack.conc_exception_hndl;

1651: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
1652: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_coa_calc.add_coa_items.exception','sql error message: '||SQLERRM);
1653: END IF;
1654:
1655: igs_ge_msg_stack.conc_exception_hndl;
1656: app_exception.raise_exception;
1657:
1658: END add_coa_items;
1659:

Line 1732: igs_ge_msg_stack.conc_exception_hndl;

1728: fnd_message.set_token('NAME','IGF_AW_COA_CALC.PRINT_OUTPUT_FILE' || ' '|| SQLERRM);
1729: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
1730: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_coa_calc.print_output_file.exception','sql error message: '||SQLERRM);
1731: END IF;
1732: igs_ge_msg_stack.conc_exception_hndl;
1733: app_exception.raise_exception;
1734: END print_output_file;
1735:
1736:

Line 2271: igs_ge_msg_stack.add;

2267: EXCEPTION
2268: WHEN param_exception THEN
2269: retcode:=2;
2270: fnd_message.set_name('IGF','IGF_AW_PARAM_ERR');
2271: igs_ge_msg_stack.add;
2272: errbuf := fnd_message.get;
2273:
2274: WHEN app_exception.record_lock_exception THEN
2275: ROLLBACK;

Line 2278: igs_ge_msg_stack.add;

2274: WHEN app_exception.record_lock_exception THEN
2275: ROLLBACK;
2276: retcode:=2;
2277: fnd_message.set_name('IGF','IGF_GE_LOCK_ERROR');
2278: igs_ge_msg_stack.add;
2279: errbuf := fnd_message.get;
2280:
2281: WHEN OTHERS THEN
2282: ROLLBACK;

Line 2285: igs_ge_msg_stack.add;

2281: WHEN OTHERS THEN
2282: ROLLBACK;
2283: retcode:=2;
2284: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXCEPTION');
2285: igs_ge_msg_stack.add;
2286: errbuf := fnd_message.get || ' '|| SQLERRM;
2287: END run;
2288:
2289: END igf_aw_coa_calc;