DBA Data[Home] [Help]

APPS.MSD_PULL_FACT_DATA dependencies on FND_FILE

Line 602: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));

598: then save error status in b_has_error and then proceed next batch
599: */
600: EXCEPTION
601: WHEN no_data_found THEN
602: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
603: errbuf := substr(SQLERRM,1,150);
604: b_has_error := TRUE;
605: raise;
606: WHEN e_post_process_err THEN

Line 607: fnd_file.put_line(fnd_file.log, 'Errors in mfg_post_process : Designator '||

603: errbuf := substr(SQLERRM,1,150);
604: b_has_error := TRUE;
605: raise;
606: WHEN e_post_process_err THEN
607: fnd_file.put_line(fnd_file.log, 'Errors in mfg_post_process : Designator '||
608: Mfg_Fcst_Rec.forecast_designator);
609: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
610: errbuf := 'Error occured in mfg_post_process';
611: b_has_error := TRUE;

Line 609: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));

605: raise;
606: WHEN e_post_process_err THEN
607: fnd_file.put_line(fnd_file.log, 'Errors in mfg_post_process : Designator '||
608: Mfg_Fcst_Rec.forecast_designator);
609: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
610: errbuf := 'Error occured in mfg_post_process';
611: b_has_error := TRUE;
612: l_temp_instance := ' ';
613: raise;

Line 615: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));

611: b_has_error := TRUE;
612: l_temp_instance := ' ';
613: raise;
614: WHEN others THEN
615: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
616: errbuf := substr(SQLERRM,1,150);
617: b_has_error := TRUE;
618: raise;
619: END;