DBA Data[Home] [Help]

APPS.FA_RECLASS_PUB dependencies on FND_MSG_PUB

Line 370: FND_MSG_PUB.Count_And_Get(

366: if FND_API.To_Boolean(p_commit) THEN
367: commit;
368: end if;
369:
370: FND_MSG_PUB.Count_And_Get(
371: p_count => x_msg_count,
372: p_data => x_msg_data );
373:
374: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 381: FND_MSG_PUB.Count_And_Get(

377: when FND_API.G_EXC_ERROR then
378: rollback to Reclass_Asset_Begin;
379: FA_SRVR_MSG.Add_Message(
380: calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
381: FND_MSG_PUB.Count_And_Get(
382: p_count => x_msg_count,
383: p_data => x_msg_data );
384: x_return_status := FND_API.G_RET_STS_ERROR;
385:

Line 390: FND_MSG_PUB.Count_And_Get(

386: when others then
387: rollback to Reclass_Asset_Begin;
388: fa_srvr_msg.add_sql_error(
389: calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
390: FND_MSG_PUB.Count_And_Get(
391: p_count => x_msg_count,
392: p_data => x_msg_data );
393: raise FND_API.G_EXC_UNEXPECTED_ERROR;
394: END do_reclass;