DBA Data[Home] [Help]

APPS.OKL_PRB_UPGRADE_PVT dependencies on FND_MSG_PUB

Line 261: x_msg_count := fnd_msg_pub.count_msg;

257: log_msg(FND_FILE.OUTPUT, l_text );
258: IF l_return_status <> OKL_API.G_RET_STS_SUCCESS
259: THEN
260: --Added by bkatraga for bug 10649684
261: x_msg_count := fnd_msg_pub.count_msg;
262: IF(x_msg_count > 0) THEN
263: FOR i in 1..x_msg_count
264: LOOP
265: FND_MSG_PUB.GET(

Line 265: FND_MSG_PUB.GET(

261: x_msg_count := fnd_msg_pub.count_msg;
262: IF(x_msg_count > 0) THEN
263: FOR i in 1..x_msg_count
264: LOOP
265: FND_MSG_PUB.GET(
266: p_msg_index => i,
267: p_encoded => FND_API.G_FALSE,
268: p_data => x_msg_data,
269: p_msg_index_out => l_msg_index_out

Line 273: fnd_msg_pub.delete_msg();

269: p_msg_index_out => l_msg_index_out
270: );
271: log_msg (FND_FILE.LOG,'Error '||to_char(i)||': '||x_msg_data);
272: END LOOP;
273: fnd_msg_pub.delete_msg();
274: END IF;
275: --end bkatraga for bug 10649684
276: END IF;
277: --Added by bkatraga for bug 10649684