DBA Data[Home] [Help]

APPS.CSTPSCCR dependencies on FND_CONCURRENT

Line 3094: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',l_err_msg);

3090: EXCEPTION
3091: WHEN INVALID_ROWS_FOUND THEN
3092: 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';
3093: x_err_buf := l_err_msg; -- Output error message for bug 3097347
3094: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',l_err_msg);
3095: fnd_file.put_line(fnd_file.log,l_err_msg);
3096: return(sql_stmt_num);
3097:
3098: WHEN OTHERS THEN

Line 3101: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',l_err_msg);

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