Auto message show to use alert [message #228390] |
Mon, 02 April 2007 20:00  |
oracleproblem
Messages: 47 Registered: May 2006 Location: Dhaka
|
Member |
|
|
sir,
I have a form,this form contain many text box and button .
when i want to save any type of information that time
oracle built in message show in a down title bar.
Example: FRM-40400:Transaction Complet:1 records applied and saved.
But there is no problem,every thing is ok,i want to show this built in message
to use alert.
please help me with coding
|
|
|
Re: Auto message show to use alert [message #228469 is a reply to message #228390] |
Tue, 03 April 2007 02:51   |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
create alert and type your message that you want to appear in form in this alert property (function-->> massage).
write code in pre-insert or (if you have button) then in when-button-pressed trigger
declare
abc number;
begin
abc := SHOW_ALERT ('alertname');
end;
|
|
|
Re: Auto message show to use alert [message #228644 is a reply to message #228469] |
Tue, 03 April 2007 09:44  |
oracleproblem
Messages: 47 Registered: May 2006 Location: Dhaka
|
Member |
|
|
Hi,
thanks,this is not my pboblme solution,i want default message
"FRM-40400:Transaction Complet:1 records applied and saved."
will show alert,not my message but your solution will show
programmar message.
please help me
|
|
|