DBA Data[Home] [Help]

APPS.INV_ITEM_MSG dependencies on FND_MSG_PUB

Line 302: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_MSG_LVL_UNEXP_ERROR) THEN

298: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
299: BEGIN
300:
301: /*
302: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_MSG_LVL_UNEXP_ERROR) THEN
303:
304: FND_MSG_PUB.Add_Exc_Msg
305: ( p_pkg_name => G_PKG_NAME
306: , p_procedure_name => g_api_name

Line 304: FND_MSG_PUB.Add_Exc_Msg

300:
301: /*
302: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_MSG_LVL_UNEXP_ERROR) THEN
303:
304: FND_MSG_PUB.Add_Exc_Msg
305: ( p_pkg_name => G_PKG_NAME
306: , p_procedure_name => g_api_name
307: , p_error_text => p_Error_Text
308: );

Line 516: FND_MSG_PUB.Add;

512:
513: --Bug: 2451359 Added the PLSQL message_mode.
514: ELSIF (g_Message_Mode = 'PLSQL') THEN
515: FND_MESSAGE.Set_Encoded( g_Msg_Tbl( g_Msg_Index ).Msg_Data );
516: FND_MSG_PUB.Add;
517:
518: END IF; -- g_Message_Mode
519:
520: /* to get message text

Line 521: l_msg_text := FND_MSG_PUB.Get ( p_msg_index => FND_MSG_PUB.g_LAST

517:
518: END IF; -- g_Message_Mode
519:
520: /* to get message text
521: l_msg_text := FND_MSG_PUB.Get ( p_msg_index => FND_MSG_PUB.g_LAST
522: , p_encoded => FND_API.g_FALSE
523: );
524:
525: -- Reset current message index value back to 0

Line 526: FND_MSG_PUB.Reset (FND_MSG_PUB.g_FIRST);

522: , p_encoded => FND_API.g_FALSE
523: );
524:
525: -- Reset current message index value back to 0
526: FND_MSG_PUB.Reset (FND_MSG_PUB.g_FIRST);
527: */
528:
529: END Write_Message;
530: