DBA Data[Home] [Help]

APPS.CSL_SERVICEL_WRAPPER_PKG dependencies on FND_MSG_PUB

Line 518: FND_MSG_PUB message stack.

514: /***
515: This function returns a translated error message string. If p_api_error is FALSE, it gets
516: message with MESSAGE_NAME = p_message from FND_NEW_MESSAGES and replaces any tokens with
517: the supplied token values. If p_api_error is TRUE, it just returns the api error in the
518: FND_MSG_PUB message stack.
519: ***/
520: FUNCTION GET_ERROR_MESSAGE_TEXT
521: (
522: p_api_error IN BOOLEAN --DEFAULT FALSE

Line 577: IF FND_MSG_PUB.Count_Msg > 0 THEN

573:
574: l_fnd_message := FND_MESSAGE.Get;
575: ELSE
576: /*** API error -> retrieve error from message stack ***/
577: IF FND_MSG_PUB.Count_Msg > 0 THEN
578: FND_MSG_PUB.Get
579: ( p_msg_index => 1
580: , p_encoded => FND_API.G_FALSE
581: , p_data => l_msg_data

Line 578: FND_MSG_PUB.Get

574: l_fnd_message := FND_MESSAGE.Get;
575: ELSE
576: /*** API error -> retrieve error from message stack ***/
577: IF FND_MSG_PUB.Count_Msg > 0 THEN
578: FND_MSG_PUB.Get
579: ( p_msg_index => 1
580: , p_encoded => FND_API.G_FALSE
581: , p_data => l_msg_data
582: , p_msg_index_out => l_msg_dummy

Line 586: IN 2 .. FND_MSG_PUB.Count_Msg

582: , p_msg_index_out => l_msg_dummy
583: );
584: l_fnd_message := l_msg_data;
585: FOR l_counter
586: IN 2 .. FND_MSG_PUB.Count_Msg
587: LOOP
588: FND_MSG_PUB.Get
589: ( p_msg_index => l_counter
590: , p_encoded => FND_API.G_FALSE

Line 588: FND_MSG_PUB.Get

584: l_fnd_message := l_msg_data;
585: FOR l_counter
586: IN 2 .. FND_MSG_PUB.Count_Msg
587: LOOP
588: FND_MSG_PUB.Get
589: ( p_msg_index => l_counter
590: , p_encoded => FND_API.G_FALSE
591: , p_data => l_msg_data
592: , p_msg_index_out => l_msg_dummy

Line 662: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'DELETE_RECORD', 'Unknown error');

658: x_return_status);
659:
660: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
661: /*** error occurred ***/
662: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'DELETE_RECORD', 'Unknown error');
663: p_error_msg := GET_ERROR_MESSAGE_TEXT
664: (
665: p_api_error => TRUE
666: );

Line 686: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'DELETE_RECORD', sqlerrm);

682: , v_message => 'Exception occurred in DELETE_RECORD:' || fnd_global.local_chr(10) || sqlerrm
683: , v_level_id => JTM_HOOK_UTIL_PKG.G_DEBUG_LEVEL_ERROR);
684: END IF;
685:
686: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'DELETE_RECORD', sqlerrm);
687: p_error_msg := GET_ERROR_MESSAGE_TEXT
688: (
689: p_api_error => TRUE
690: );