DBA Data[Home] [Help]

APPS.OKL_CNTRCT_FIN_EXTRACT_PVT dependencies on FND_MSG_PUB

Line 2338: l_msg_idx INTEGER := FND_MSG_PUB.G_FIRST;

2334: lx_return_status VARCHAR2(1);
2335:
2336: l_request_id NUMBER;
2337: l_row_count NUMBER;
2338: l_msg_idx INTEGER := FND_MSG_PUB.G_FIRST;
2339: lx_error_rec OKL_API.error_rec_type;
2340:
2341: CURSOR req_id_csr IS
2342: SELECT

Line 2462: fnd_msg_pub.get(

2458: --sechawla : added
2459: -- Get the messages in the log
2460: LOOP
2461:
2462: fnd_msg_pub.get(
2463: p_msg_index => l_msg_idx,
2464: p_encoded => FND_API.G_FALSE,
2465: p_data => lx_error_rec.msg_data,
2466: p_msg_index_out => lx_error_rec.msg_count);

Line 2475: EXIT WHEN ((lx_error_rec.msg_count = FND_MSG_PUB.COUNT_MSG)

2471: fnd_file.put_line(fnd_file.output, lx_error_rec.msg_data);
2472:
2473: END IF;
2474:
2475: EXIT WHEN ((lx_error_rec.msg_count = FND_MSG_PUB.COUNT_MSG)
2476: OR (lx_error_rec.msg_count IS NULL));
2477:
2478: l_msg_idx := FND_MSG_PUB.G_NEXT;
2479: END LOOP;

Line 2478: l_msg_idx := FND_MSG_PUB.G_NEXT;

2474:
2475: EXIT WHEN ((lx_error_rec.msg_count = FND_MSG_PUB.COUNT_MSG)
2476: OR (lx_error_rec.msg_count IS NULL));
2477:
2478: l_msg_idx := FND_MSG_PUB.G_NEXT;
2479: END LOOP;
2480:
2481: fnd_file.new_line(fnd_file.log,2);
2482: