DBA Data[Home] [Help]

APPS.INV_ITEM_MSG dependencies on FND_MSG_PUB

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

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

Line 305: FND_MSG_PUB.Add_Exc_Msg

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

Line 517: FND_MSG_PUB.Add;

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

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

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

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

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