DBA Data[Home] [Help]

APPS.MSD_ARCHIVE_PLAN dependencies on FND_FILE

Line 16: fnd_file.put_line(fnd_file.log, 'Error in archive process: see batch log for details');

12:
13: exception
14: when others then
15: errbuf := substr(SQLERRM,1,150);
16: fnd_file.put_line(fnd_file.log, 'Error in archive process: see batch log for details');
17: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
18: retcode := '-1';
19:
20: end archive_plan;

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

13: exception
14: when others then
15: errbuf := substr(SQLERRM,1,150);
16: fnd_file.put_line(fnd_file.log, 'Error in archive process: see batch log for details');
17: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
18: retcode := '-1';
19:
20: end archive_plan;
21:

Line 35: fnd_file.put_line(fnd_file.log, 'Error in restore process: see batch log for details');

31:
32: exception
33: when others then
34: errbuf := substr(SQLERRM,1,150);
35: fnd_file.put_line(fnd_file.log, 'Error in restore process: see batch log for details');
36: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
37: retcode := '-1';
38:
39: end restore_plan;

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

32: exception
33: when others then
34: errbuf := substr(SQLERRM,1,150);
35: fnd_file.put_line(fnd_file.log, 'Error in restore process: see batch log for details');
36: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
37: retcode := '-1';
38:
39: end restore_plan;
40: