DBA Data[Home] [Help]

APPS.WIP_WS_LABOR_METRIC_PUB dependencies on FND_FILE

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

208: p_stmt_num in number,
209: p_proc_name in varchar2)
210: is
211: begin
212: fnd_file.put_line(fnd_file.log,'Error in '||p_proc_name||'( stmt_num: '||p_stmt_num||') '||p_error_msg);
213: fnd_file.new_line(fnd_file.log, 3);
214: end handle_error;
215:
216: /* To calculate metrics for the required period */

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

209: p_proc_name in varchar2)
210: is
211: begin
212: fnd_file.put_line(fnd_file.log,'Error in '||p_proc_name||'( stmt_num: '||p_stmt_num||') '||p_error_msg);
213: fnd_file.new_line(fnd_file.log, 3);
214: end handle_error;
215:
216: /* To calculate metrics for the required period */
217: procedure calculate_metrics(retcode out nocopy number,

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

1363: retcode:=0;
1364: else
1365: retcode := 1;
1366: errbuf := 'Calculation program encountered invalid records. Invalid records will be ignored during calculation.';
1367: fnd_file.put_line(fnd_file.log,errbuf);
1368: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);
1369: end if;
1370:
1371: exception

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

1371: exception
1372: when e_null_org_id then
1373: retcode := 2;
1374: errbuf := 'Organization parameter cannot be null';
1375: fnd_file.put_line(fnd_file.log,errbuf);
1376: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
1377: when others then
1378: fnd_message.set_name('WIP','WIP_LAB_UNEXPECTED_ERROR');
1379: x_error_msg := fnd_message.get;