DBA Data[Home] [Help]

APPS.QPR_SPECIAL_ETL dependencies on DBMS_UTILITY

Line 258: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);

254: close c_kit;
255: exception
256: when OTHERS then
257: fnd_file.put_line(fnd_file.log, 'Error in kit item cost updation');
258: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
259: raise;
260: end handle_kit_items;
261:
262: procedure handle_ato_items is

Line 308: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);

304: close c_ato;
305: exception
306: when OTHERS then
307: fnd_file.put_line(fnd_file.log, 'Error in ato model item cost updation');
308: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
309: raise;
310: end handle_ato_items;
311:
312: procedure handle_pto_items is

Line 358: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);

354: close c_pto;
355: exception
356: when OTHERS then
357: fnd_file.put_line(fnd_file.log, 'Error in pto model item cost updation');
358: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
359: raise;
360: end handle_pto_items;
361:
362: /* main method begins*/

Line 479: dbms_utility.format_error_backtrace);

475: when others then
476: retcode := 2;
477: errbuf := FND_MESSAGE.GET;
478: fnd_file.put_line(fnd_file.log,
479: dbms_utility.format_error_backtrace);
480: return;
481: end;
482: end;
483: first_time :=0;

Line 645: dbms_utility.format_error_backtrace);

641: when others then
642: retcode := 2;
643: errbuf := FND_MESSAGE.GET;
644: fnd_file.put_line(fnd_file.log,
645: dbms_utility.format_error_backtrace);
646: return;
647: end;
648: end;
649: first_time :=0;

Line 729: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);

725: exception
726: when OTHERS then
727: retcode := 2;
728: errbuf := 'ERROR: ' || substr(sqlerrm, 1, 1000);
729: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
730: end collect_cost;
731:
732:
733: procedure collect_offadj(

Line 1260: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);

1256: errbuf := 'ERROR: ' || substr(SQLERRM,1,1000);
1257: fnd_file.put_line(fnd_file.log,
1258: 'Unable to update sales measures');
1259: fnd_file.put_line(fnd_file.log, 'ERROR: ' || substr(SQLERRM,1,1000));
1260: fnd_file.put_line(fnd_file.log, DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
1261: rollback;
1262: end consolidate_upd_sales_meas;
1263:
1264: procedure update_pr_segment(

Line 1440: fnd_file.put_line(fnd_file.log, dbms_utility.format_error_backtrace);

1436: when others then
1437: errbuf := sqlerrm;
1438: retcode := 2;
1439: fnd_file.put_line(fnd_file.log, 'Unable to update pricing segment');
1440: fnd_file.put_line(fnd_file.log, dbms_utility.format_error_backtrace);
1441: end update_pr_segment;
1442:
1443:
1444: END QPR_SPECIAL_ETL;