DBA Data[Home] [Help]

APPS.EDR_STANDARD_PUB dependencies on FND_MESSAGE

Line 127: -- need to do this in the above api after each fnd_message.set_name/set_token

123: raise fnd_api.G_EXC_ERROR;
124: END;
125: -- fetch the message off the dictionary stack and add to API message list
126: -- would only add the last one message in the above api call
127: -- need to do this in the above api after each fnd_message.set_name/set_token
128: FND_MSG_PUB.Add;
129:
130: -- Standard call to get message count, and if count is 1, get message info
131: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count, p_data => x_msg_data );

Line 204: -- need to do this in the above api after each fnd_message.set_name/set_token

200: raise fnd_api.G_EXC_ERROR;
201: END;
202: -- fetch the message off the dictionary stack and add to API message list
203: -- would only add the last one message in the above api call
204: -- need to do this in the above api after each fnd_message.set_name/set_token
205: FND_MSG_PUB.Add;
206:
207: -- Standard call to get message count, and if count is 1, get message info
208: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count, p_data => x_msg_data );

Line 656: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_AUDIT_DISABLED' );

652: END IF;
653: EXCEPTION
654: WHEN OTHERS THEN
655: x_isOld_auditValue := FND_API.G_FALSE;
656: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_AUDIT_DISABLED' );
657: fnd_msg_pub.Add;
658: raise fnd_api.G_EXC_ERROR;
659: END;
660: -- fetch the message off the dictionary stack and add to API message list

Line 662: -- need to do this in the above api after each fnd_message.set_name/set_token

658: raise fnd_api.G_EXC_ERROR;
659: END;
660: -- fetch the message off the dictionary stack and add to API message list
661: -- would only add the last one message in the above api call
662: -- need to do this in the above api after each fnd_message.set_name/set_token
663: FND_MSG_PUB.Add;
664:
665: -- Standard call to get message count, and if count is 1, get message info
666: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count, p_data => x_msg_data );

Line 738: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_GENERATED' );

734: P_ERR_MSG => l_error_mesg );
735: EXCEPTION
736: WHEN OTHERS THEN
737: IF l_error_code > 0 THEN
738: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_GENERATED' );
739: fnd_message.Set_Token( 'ERR_CODE', l_error_code );
740: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
741: fnd_msg_pub.Add;
742: raise fnd_api.G_EXC_ERROR;

Line 739: fnd_message.Set_Token( 'ERR_CODE', l_error_code );

735: EXCEPTION
736: WHEN OTHERS THEN
737: IF l_error_code > 0 THEN
738: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_GENERATED' );
739: fnd_message.Set_Token( 'ERR_CODE', l_error_code );
740: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
741: fnd_msg_pub.Add;
742: raise fnd_api.G_EXC_ERROR;
743: ELSE

Line 740: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );

736: WHEN OTHERS THEN
737: IF l_error_code > 0 THEN
738: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_GENERATED' );
739: fnd_message.Set_Token( 'ERR_CODE', l_error_code );
740: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
741: fnd_msg_pub.Add;
742: raise fnd_api.G_EXC_ERROR;
743: ELSE
744: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_UNEXPECTED' );

Line 744: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_UNEXPECTED' );

740: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
741: fnd_msg_pub.Add;
742: raise fnd_api.G_EXC_ERROR;
743: ELSE
744: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_UNEXPECTED' );
745: fnd_message.Set_Token( 'ERR_CODE', l_error_code );
746: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
747: fnd_msg_pub.Add;
748: raise fnd_api.G_EXC_UNEXPECTED_ERROR;

Line 745: fnd_message.Set_Token( 'ERR_CODE', l_error_code );

741: fnd_msg_pub.Add;
742: raise fnd_api.G_EXC_ERROR;
743: ELSE
744: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_UNEXPECTED' );
745: fnd_message.Set_Token( 'ERR_CODE', l_error_code );
746: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
747: fnd_msg_pub.Add;
748: raise fnd_api.G_EXC_UNEXPECTED_ERROR;
749: END IF;

Line 746: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );

742: raise fnd_api.G_EXC_ERROR;
743: ELSE
744: fnd_message.Set_Name( 'EDR', 'EDR_PLS_STDMSG_UNEXPECTED' );
745: fnd_message.Set_Token( 'ERR_CODE', l_error_code );
746: fnd_message.Set_Token( 'ERR_MESG', l_error_mesg );
747: fnd_msg_pub.Add;
748: raise fnd_api.G_EXC_UNEXPECTED_ERROR;
749: END IF;
750: END;