Need help on FND_MESSAGE [message #254579] |
Fri, 27 July 2007 03:28 |
d_indrani
Messages: 8 Registered: November 2005 Location: Bangalore, India
|
Junior Member |
|
|
Hi all,
I have created a message with token from application developer responsibility.
Now in my PL/SQL program I want to fetch this message.
Using FND_MESSAGE, I am able to set the token value to that message but after setting it unable to retrieve that whole message.
Can anyone tell me how to fetch that message inside a PL/SQL code?
Thanks in adv
|
|
|
Re: Need help on FND_MESSAGE [message #254606 is a reply to message #254579] |
Fri, 27 July 2007 04:37 |
nsudharshan
Messages: 3 Registered: July 2007
|
Junior Member |
|
|
SELECT *
FROM FND_NEW_MESSAGES
WHERE MESSAGE_NAME = 'INVALID_USER_NAME';
MESSAGE_NAME MESSAGE_TEXT
------------ -------------
INVALID_USER_NAME The following invalid characters are not allowed inside username: Invalid characters are: " ( ) * + , ; < > \ ~ / :
|
|
|