DBA Data[Home] [Help]

APPS.OKL_CNTRCT_FIN_EXTRACT_PVT dependencies on FND_MSG_PUB

Line 2352: l_msg_idx INTEGER := FND_MSG_PUB.G_FIRST;

2348: lx_return_status VARCHAR2(1);
2349:
2350: l_request_id NUMBER;
2351: l_row_count NUMBER;
2352: l_msg_idx INTEGER := FND_MSG_PUB.G_FIRST;
2353: lx_error_rec OKL_API.error_rec_type;
2354:
2355: CURSOR req_id_csr IS
2356: SELECT

Line 2476: fnd_msg_pub.get(

2472: --sechawla : added
2473: -- Get the messages in the log
2474: LOOP
2475:
2476: fnd_msg_pub.get(
2477: p_msg_index => l_msg_idx,
2478: p_encoded => FND_API.G_FALSE,
2479: p_data => lx_error_rec.msg_data,
2480: p_msg_index_out => lx_error_rec.msg_count);

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

2485: fnd_file.put_line(fnd_file.output, lx_error_rec.msg_data);
2486:
2487: END IF;
2488:
2489: EXIT WHEN ((lx_error_rec.msg_count = FND_MSG_PUB.COUNT_MSG)
2490: OR (lx_error_rec.msg_count IS NULL));
2491:
2492: l_msg_idx := FND_MSG_PUB.G_NEXT;
2493: END LOOP;

Line 2492: l_msg_idx := FND_MSG_PUB.G_NEXT;

2488:
2489: EXIT WHEN ((lx_error_rec.msg_count = FND_MSG_PUB.COUNT_MSG)
2490: OR (lx_error_rec.msg_count IS NULL));
2491:
2492: l_msg_idx := FND_MSG_PUB.G_NEXT;
2493: END LOOP;
2494:
2495: fnd_file.new_line(fnd_file.log,2);
2496: