DBA Data[Home] [Help]

APPS.WIP_WS_LABOR_METRIC_PUB dependencies on FND_FILE

Line 218: fnd_file.put_line(fnd_file.log,'Error in '||p_proc_name||'( stmt_num: '||p_stmt_num||') '||p_error_msg);

214: p_stmt_num in number,
215: p_proc_name in varchar2)
216: is
217: begin
218: fnd_file.put_line(fnd_file.log,'Error in '||p_proc_name||'( stmt_num: '||p_stmt_num||') '||p_error_msg);
219: fnd_file.new_line(fnd_file.log, 3);
220: end handle_error;
221:
222: /* To calculate metrics for the required period */

Line 219: fnd_file.new_line(fnd_file.log, 3);

215: p_proc_name in varchar2)
216: is
217: begin
218: fnd_file.put_line(fnd_file.log,'Error in '||p_proc_name||'( stmt_num: '||p_stmt_num||') '||p_error_msg);
219: fnd_file.new_line(fnd_file.log, 3);
220: end handle_error;
221:
222: /* To calculate metrics for the required period */
223: procedure calculate_metrics(retcode out nocopy number,

Line 1465: fnd_file.put_line(fnd_file.log,errbuf);

1461: retcode:=0;
1462: else
1463: retcode := 1;
1464: errbuf := 'Calculation program encountered invalid records. Invalid records will be ignored during calculation.';
1465: fnd_file.put_line(fnd_file.log,errbuf);
1466: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);
1467: end if;
1468:
1469: exception

Line 1473: fnd_file.put_line(fnd_file.log,errbuf);

1469: exception
1470: when e_null_org_id then
1471: retcode := 2;
1472: errbuf := 'Organization parameter cannot be null';
1473: fnd_file.put_line(fnd_file.log,errbuf);
1474: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
1475: when others then
1476: fnd_message.set_name('WIP','WIP_LAB_UNEXPECTED_ERROR');
1477: x_error_msg := fnd_message.get;