Popup when form is opened. [message #144447] |
Wed, 26 October 2005 08:32 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
sambireddyn
Messages: 48 Registered: May 2005 Location: Andhra Pradesh
|
Member |
|
|
Hi
In Oracle apps there is a standard form, in which I want to give popup as soon as the form is opened. As far as I know this has to be done in CUSTOM.pll. I write the following piece of code for that , but it does not work.
If event = 'WHEN-NEW-FORM-INSTANCE' Then
If (form_name = 'ARXRWMAI') Then
fnd_message.debug('Please Ensure that Receipt Date,GL Date and Exchange Rate Date should be same');
End If;
End If;
Your help needed.
Thanks,
Sambi Reddy.
|
|
|
|
Re: Popup when form is opened. [message #144536 is a reply to message #144447] |
Wed, 26 October 2005 23:15 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
sambireddyn
Messages: 48 Registered: May 2005 Location: Andhra Pradesh
|
Member |
|
|
Hi
I have compiled and .plx is generated in UNIX Machine.
When I see from the Navigator window of the Oracle Receivables.
Under Oracle Receivables Navigation window > Receipts >
I have
Batches,
Batches Summary,
Receipts,
Receipts Summary,
Remittances,
Remittances Summary,
All these form names are same.
I want to give popup only for Receipts form is opened , But the name of the all above forms are same. That message is popping up when all the above forms are opened.
Can You please suggest how to do it only for receipts form only.
Thanks,
SambiReddy
|
|
|
|
|
Re: Popup when form is opened. [message #145295 is a reply to message #144447] |
Wed, 02 November 2005 05:15 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
kiran
Messages: 503 Registered: July 2000
|
Senior Member |
|
|
Yes , What David said is correct.There could have been some way of differening those modules , even though they have the same form name.
You have to find out that , and then modify the the ALERT Logic.
--Kiran.
|
|
|
Re: Popup when form is opened. [message #145395 is a reply to message #145250] |
Wed, 02 November 2005 17:50 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](/forum/images/custom_avatars/67467.jpg) |
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Open the FMB (or FMX) in a decent flat editor (eg TextPad) and look at the When-New-Form-Instance or just search for 'key phrases' (a key phrase is something that YOU see on the screen when you run the form).
The logic may be in a package or pll that is associated with only that form, but hey, I don't do Oracle Applications so this is only a 'general' maintenance technique.
David
[Updated on: Wed, 02 November 2005 17:51] Report message to a moderator
|
|
|