DBA Data[Home] [Help]

APPS.CSTPSCCR dependencies on FND_FILE

Line 3096: fnd_file.put_line(fnd_file.log,l_err_msg);

3092: WHEN INVALID_ROWS_FOUND THEN
3093: l_err_msg := 'process_sc_rollup_op_yields: ' || sql_stmt_num || ': Value in item_cost should be equal to value in yielded_cost for operation yield cost rows';
3094: x_err_buf := l_err_msg; -- Output error message for bug 3097347
3095: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',l_err_msg);
3096: fnd_file.put_line(fnd_file.log,l_err_msg);
3097: return(sql_stmt_num);
3098:
3099: WHEN OTHERS THEN
3100: l_err_msg := 'process_sc_rollup_op_yields: ' || sql_stmt_num || ': ' || substrb(sqlerrm,1,62);

Line 3103: fnd_file.put_line(fnd_file.log,l_err_msg);

3099: WHEN OTHERS THEN
3100: l_err_msg := 'process_sc_rollup_op_yields: ' || sql_stmt_num || ': ' || substrb(sqlerrm,1,62);
3101: x_err_buf := l_err_msg; -- Output error message for bug 3097347
3102: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',l_err_msg);
3103: fnd_file.put_line(fnd_file.log,l_err_msg);
3104: return(sql_stmt_num);
3105:
3106: END process_sc_rollup_op_yields;
3107: