APP-FND-01926 The Custom Event  WHEN-LOGON-CHANGED...

Hi,
After compiling and placing a 'custom' CUSTOM.pll (and plx) file on the server, when logging into Applications receiving ERROR:
APP-FND-01926 The custom event WHEN-LOGON-CHANGED raising unhandled exception: User Defined exception.
This is for R12.1.3
The code was moved to the original base version of the R12 CUSTOM.pll file...
I read many other Notes on this error, but most refer to an error related to a Program Unit Not found and requiring a regeneration of the JAR files.
Would this be the same situation?
When we place the original back in place the forms login works.
Any ideas?
Thanks,
Lamonte

check ur CLASSPATH environment variable ur Custom.plx library should visible on runtime to Classpath variable.
Baig,
[My Oracle Blog|http://baigsorcl.blogspot.com/]

Similar Messages

  • When login Apps, get APP-FND--01926: The custom event WHEN-LOGON-CHANGED ra

    When login Apps, get APP-FND--01926: The custom event WHEN-LOGON-CHANGED raised unhandled exception: ORA-01403: no data found
    Applied patch
    6241631 11i.ATG_PF.H.delta.7 (RUP 7) and it's pre-requisite patches
    Forms can not be launched successfully.
    APP-FND--01926: The custom event WHEN-LOGON-CHANGED raised unhandled exception: ORA-01403: no data found
    Followed
    Note 391243.1: Unable to access forms - getting APP-FND-01926 error (Doc ID 391243.1)
    Note 555409.1: Client Gets App-Fnd-01926 Every Time After Bounce Apps 11i Forms Service (Doc ID 555409.1)
    these two notes, can not solve the issue.
    Executed following action plans:
    1. Backup custom.pll file on your issued instance(DEV instance).
    2. Copy a custom.pll files from a working environments(i.e. PROD instance) to this issued instance(DEV instance).
    3. Compile the new copied Library CUSTOM.pll manually by running the command:
    f60gen module=CUSTOM.pll userid=APPS/APPS output_file=$AU_TOP/resource/CUSTOM.plx module_type=library batch=no compile_all=special4. The $FORMS60_PATH needs to be in sync with the the Context.xml specifically the s_f60path variable
    i.e >/oracle/apps/test10appl/au/11.5.0/resource:/oracle/apps/test10appl/au/11.5.0/resource/stub</FORMS60_PATH>
    5. Run Autoconfig instantiate the changes.
    Issue still exists.
    Please HELP~~
    Thanks,
    Jackie

    Hello Srini,
    app11i@hpfsapp2> ls -ltra CUSTOM
    -rwxr-xr-x 1 app11i dba 24576 Aug 29 2001 TMCUSTOM.pll
    -rwxr-xr-x 1 app11i dba 20480 Mar 8 2006 CUSTOM.pll.backup
    -rwxr-xr-x 1 app11i dba 24576 Feb 22 2007 CUSTOM.pll.20120215
    -rwxr-xr-x 1 app11i dba 32768 Oct 4 2007 CHRM_CUSTOM.plx
    -rw-r--r-- 1 app11i dba 36864 Oct 8 2007 CHRM_CUSTOM.pll
    -rwxr-xr-x 1 app11i dba 20480 Feb 14 15:20 TMCUSTOM.plx
    -rw-r--r-- 1 app11i dba 24576 Feb 15 09:22 CUSTOM.pll
    -rwxr-xr-x 1 app11i dba 16384 Feb 15 09:23 CUSTOM.plx
    I don't quite understand "only one copy of CUSTOM.plx in the PATH directories", what is PATH directories? How to check? You mean environment variable?
    EBS version: 11.5.10.2
    DB version: 9.2.0.8
    OS: Linux x86
    Thanks,
    Jackie

  • What is the proper event when i change an edit text

    Hi Dear;
    which event is when i an edit text value changes ?
    regards

    If you want to catch changes in exittext, store his value to global variable or somewhere to other exittext (invisible) and play with event
    pval.EventType = SAPbouiCOM.BoEventTypes.et_KEY_DOWN
    and compare the values in edittext and invisible edittext. If the values are different, the edittext value changes.

  • APP-FND-00676: The flexfield routine FDFGDC cannot read the default ref....

    Hi Guys
    Please help me, I'm desperate. I'm trying to enter a new Lease in Properties Module. In the payments tab, when I try to save a line I get the following error:
    APP-FND-00676: The flexfield routine FDFGDC cannot read the default reference field specified for this descriptive flexfield. The developer specified a context field (via the Register Descriptive Flexfields form) that does not exist in this block of this form.
    Action: Contact your system administrator, and choose another default reference field for this descriptive flexfield.
    I've got an idea that it's complaining about a Flexfield, but I don't know which one and I don't know how to resolve this error. Any ideas would be appreciated.
    Thank you
    Regards

    Hi Octavio
    I did see the hints on Metalink and I looked at them. In principle I do understand what they are saying on the hints. My problem is that I can't find any hints on Property Manager, which is where I'm getting this error. And my other big problem is that I don't know which Flexfield is causing the error. So even if I follow the hints from Metalink, it's still not working because I could be looking at the wrong flexfield.
    Thanks a lot.

  • How to receive the custom event in the listening portlet (No backing file)

    I have couple of portlets (JPF based). Portlet A is firing an event
         public Forward processAction()
              PortletBackingContext context =PortletBackingContext.getPortletBackingContext(this.getRequest());
              String message = "XXXXX";
              context.fireCustomEvent("customevent", message);
              Forward forward = new Forward("success");
              return forward;
    I have configured the Portlet B's eventhandler to listen for the 'customEvent' and invoke the pageFlowAction 'listenForEvent'
         @Jpf.Action(forwards = { @Jpf.Forward(name = "success", path = "test2.jsp") })
         public Forward listenForEvent() {
              Forward forward = new Forward("success");
              return forward;
    Portlet B's method listenForEvent is indeed getting invoked, but is there a way I can retrieve the 'Event' object (as fired by Portlet A) inside the listenForEvent. I could have done this via the Backing file, but for some reasons i cann't use the backing file. Is there a way i can get the CustomEvent and the associated payload in my listening JPF portlet, without a backing file?
    The WLP version is 10.3

    Hello,
    I originally said:
    All you should need to do is to modify the method signature for your event-receiving method. The method signature should be:
    public void listenforEvent(HttpServletRequest request, HttpServletResponse response, Event event)
    where Event is a com.bea.netuix.events.Event object. You can then cast this to a CustomEvent object.
    But I mis-read your earlier post about catching the custom event and invoking a pageflow action. When you do that, you will lose the custom event's payload (your message), and there is no way to retrieve it from your pageflow action.
    The only way you can actually retrieve the event's payload is using a backing file for the portlet, with a method having the signature I mentioned above. You can then set a request attribute with the event's payload and still have it invoke the pageflow action, at which time you could retrieve the request attribute value-- assuming you don't need to run this portlet over WSRP. Over WSRP, the event-handling and pageflow action-invoking lifecycles will happen with independent request objects, so you would need to store the event payload in session to work over WSRP.
    Kevin
    Edited by: kfrender on Aug 31, 2009 3:34 PM

  • When I sync my phone I get my husbands phone contact list, apps etc and the same happens when he sync his phone.  It recognizes our phone as different users.  How can I get it to not do that??

    When I sync my phone I get my husband's phone contact list, apps, etc and the same happens when he syncs his phone.  It does recognize our phones as different users so how can I stop this from happening when we sync?

    Did you tick the box in iTunes to sync with the Mac address book?  Are you using the same user account on your Mac, with the same contacts in the same address book?

  • HT2090 hello, my eyesight issue happens occasionally, from time to time i run multiple apps that use the isight camera. when i close each app the isight camera's green light is still active. When that happens the only way to stop the isight camera is to r

    hello, my eyesight issue happens occasionally, from time to time i run multiple apps that use the isight camera. when i close each app the isight camera's green light is still active. When that happens the only way to stop the isight camera is to reboot.
    Is there a way to use activity monitor to identify and kill the process controlling the isight? My apologies in advance if this sounds windows (task manager) like.
    Thanks

    tqtclipper wrote:
    hello, my eyesight issue happens occasionally, from time to time i run multiple apps that use the isight camera...
    http://support.apple.
    com/kb/HT2411: Your camera can be used by only one application at a time.
    (Over time, Apple has changed the built-in camera's name on newer Macs from "iSight" to "FaceTime" and then to "FaceTime HD."  Regardless of the name of your Mac's built-in camera, the same info and troubleshooting applies.)
    tqtclipper wrote:
    ... Is there a way to use activity monitor to identify and kill the process controlling the isight? ...
    http://support.apple.
    com/kb/PH5147:  You can quit any process you can see in those listed in the window that opens when you use Activity Mornitor's 
         Window >
    Activity Monitor
    menu command.
    Message was edited by: EZ Jim
    Mac OSX 10.8.3

  • How to deal with the mouse events when the thread is running

    Hi everybody,
    I have a problem with my program.
    Now I want to present a picture for some time in the Canvas,then automatically clear the screen, but when the user press the mousebutton or keybutton, I want to stop the thread and clear the screen.
    How can I receive the mouse event when the thread is running?
    Thanks,

    I use my code in a GUI applet.
    I try to use the code tag, it's the first time.
                   Image im=sd.getStimulus(obj);
                   if(pos==null){
                        g.drawImage(im, (w-im.getWidth(null))/2,(h-im.getHeight(null))/2,null);
                   }else{
                        g.drawImage(im, pos.x,pos.y,pos.w,pos.h,null);
                   try{
                        sleep(showtime);
    //                    Thread.sleep(showtime);
                   }catch(InterruptedException e){}
                   if(pos==null){
                        g.clearRect((w-im.getWidth(null))/2,(h-im.getHeight(null))/2,im.getWidth(null),im.getHeight(null));
                   }else{
                        g.clearRect(pos.x,pos.y, pos.w, pos.h);
                   }

  • Many of us know Outlook mails can be stored using a PST Mail app to review the old mails when needed on an iPad. I am considering a switch to Mac OS. But I am wondering if the same is possible with the mbox files.

    Many of us know Outlook mails (pst files) can be stored using a PST Mail app to review the old mails when needed on an iPad. I am considering a switch to Mac OS. But I am wondering if the same is possible. What would be the file format of the emails on a Mac OS and the app equivalent of the PST Mail app? Thanks for helping me out. Durai

    clw51 wrote:
    Thanks for your response and yes I understand what you are saying. Maybe you could explain why "email users" hate HTML email with a passion.
    These tend to be technical users who have a more purist attitude about email. They prefer that email be text-only, and consider HTML formatting to be superfluous for most messages. And I do think they have a point. If you have 100 plain-text emails and 100 HTML emails, you will notice that the HTML emails take up noticeably more disk space. And if the HTML email senders have loaded down their default emails with background images, signatures with corporate logos and winmail.dat attachments and all manner of embedded ornamentation, and (I never even thought people went this far) animations, then a simple email reply like "Thanks! I'll see you this evening," ends up carrying an tremendous additional amount of file size and network bandwidth overhead just to carry those six words. It not only means more disk space consumed, but it ripples all through the system: More space is required for backing up and archiving your emails, plus more mail server space and network bandwidth are consumed per message. Purists see this as an incredible waste of resources.
    The message body of at text email can simply be "Thanks! I'll see you this evening."
    The HTML version, at a bare minimum, must be
    {html}
    {p}"Thanks! I'll see you this evening."{/p}
    {/html}
    (replaced angle brackets with curly brackets so Apple Forums won't try and format it)
    Already that's almost double the amount of characters required to send the message, just to format it in HTML. And that's if no fonts, styles, graphics, or media have been applied. If they are, the number of actual characters sent balloons dramatically.
    I'm in the middle. I don't hate HTML email, I'll even turn it on when I think formatting will help my message. But I like to use disk space efficiently, so I've set plain text as my default for sending messages.

  • I cannot get subtitles on my new smart tv. I've read all the solutions online and none of them work. When I try to airplay the BBC i player by mirroring my iphone 4 the subtitles disappear when I change from iphone to appletv.

    I cannot get subtitles on my new smart tv. I've read all the solutions online and none of them work. When I try to airplay the BBC i player by mirroring my iphone 4 the subtitles disappear when I change from iphone to apple tv.

    That's because the BBC iPlayer app uses basic AirPlay to show the content, this means the original content is sent to the Apple TV for it to decode rather than mirroring the screen of the iPad where the subtitles are added.

  • Itunes 10.6.3 - Just update to the new Itunes and the album artwork is not sticking anymore... I upload the artwork and when I change songs and go back the art is gone. Anyone with similar issue ?

    Itunes 10.6.3 - Just update to the new Itunes and the album artwork is not sticking anymore... I upload the artwork and when I change songs and go back the art is gone. Anyone with similar issue ?

    I have this issue.  Album artwork was totally fine before.  After this update, it is all messed up and even got messed up when transferred to my iphone.
    iTunes doesn't have the artwork anymore, but then iPhone has it but shows wrong artwork with wrong albums.
    Please fix!

  • Sales Dashboard, the customer is looking to change the 'Opportunities

    In the Sales Dashboard, the customer is looking to change the ‘Opportunities’ title label to ‘Acquisitions’.
    I am having the same difficulty personalizing the "Opportunities" as well as the "Leads" title labels on my internal test environment. The other labels seems to personalize ok.
    Please reference the following screenshots help illustrate the specific personalization which the customer is looking to perform:
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_763354697/6224385.992/Sales_User.doc
    Again, in this case, it is "Opportunities" label that is circled in the screenshot and outlined in Point #1.
    I am hoping there is something simple that I am missing here, or whether anyone encountered anything similar.
    Thanks in advance.
    Message was edited by:
    omitchel

    All your changes are feasible and as you hoped, really simple :)
    1.     Change ‘Opportunities’ label to ‘Acquisitions’ : You can check the page xml and find the source of heading text. You can either use personalization or the extension to change it in a static or dynamic manner.
    2.     Change ‘My Open Opportunities(Owner)’ to ‘My Open Acquisitions(Owner)’: Again check the page xml and find the VO attached to the dropdown list. This will provide you the data source. You can make the changes there.
    3.     Change ‘Sales Dashboard’ to ‘Sales’. Change the prompt field for the function entry "Sales Dashboard" in the menu "Sales User"
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • The email notification sound is always the glass even when I change it

    The email notification sound is always the glass even when I change it, tried many different sounds but the email always sounds as the glass
    Pls help at wits end

    Here in Apple Support check this discussion hopefully it will help: 
    https://discussions.apple.com/message/23673157#23673157

  • I have read all of the discussions about headset echos, my echos are heard by the caller when i hold the phone by the bottom half. The echo disappears  when I change my hold position.  Anybody else having this problem? Fix?

    I have read all of the discussions about headset echos, my echos are heard by the caller when I hold the phone by the bottom half. The echo disappears  when I change my hold position.  Anybody else having this problem? Fix?

    Don't hold it like that. You're creating an 'echo chamber' due to the position of your hand/neck/face. It's not a technical issue. I hear this when I talk to my wife and she cradles the phone against her shoulder.

  • How to make a dalog process custom events when blocked by modal dialog

    Hi,
    I would like to understand the way modal dialogs block other dialogs so that I can properly solve an issue I'm having with two modal dialogs, one blocking the other.
    I have an application, netbeans platform based, that opens a JDialog, NewDiskDlg, with it's modal property set to true. This dialog is responsible for starting a thread that will process a given number of files, from time to time, depending on some conditions, this thread will send events to the NewDiskDlg.
    When this thread is started, the NewDiskDlg creates a new JDialog, also with the modal property set to true. Both dialogs have the same parent, the main window. And this works as I expected, the second dialog, ActiveScanningDlg, opens on top of the NewDiskDlg and, until the thread stops, the dialog stays visible.
    When the thread stops an event is sent to this two dialogs signaling that the job has been completed, and here is my problem. The second dialog, the one that is visible when the event arrives, receives the event and executes the dispose() method, releasing control to the NewDiskDlg in the back, but the NewDiskDlg does not receive the event and does not process it correctly.
    I understand the no input can be sent to a blocked window, but does that include calling upon the window's methods?
    I've been looking for some help on this but my search terms are not good enough to provide me with any useful information. I've also read the topic on the focus system that is present in the Java Tutorial but I feel that that is not what I should be looking at.
    The following code is a snippet of the important parts that I described:
    NewDiskDlg has the following methods to process the events
        public void readingStarted(ReadingEvent evt) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    scanningDlg.showCentered();
        public void readingFile(ReadingEvent evt) {
            //DO NOTHING
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            if (!showAgain) {
                dispose();
        public void readingAborted(ReadingEvent evt) {
            JOptionPane.showMessageDialog(this, "", "", JOptionPane.ERROR_MESSAGE);//TODO: i18n on the error messagens
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
        }ActiveScanningDlg processes the events like this:
        public void readingStarted(ReadingEvent evt) {
            //DO NOTHING
        public void readingFile(ReadingEvent evt) {
            jpbReadingProgress.setString(evt.getCurrentFileName());
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            dispose();
        public void readingAborted(ReadingEvent evt) {
            readingStopped(evt);
        }This is an example on how the events are sent:
        private void fireReadingFile(ReadingEvent evt) {
            for (ReadingListener l : listeners) {
                l.readingFile(evt);
        }

    Hi,
    You have to check the Tolerance limits set for the following tolerance keys. In case if any where the limit is breached the systems blocks the Invoice as 'R - Invoice verification'. Please check the limits set for all these keys.
    AP - item amount variance (if you have activated the item check)
    DQ and DW - for Quantity variance
    PP - price variance with the order price
    ST - date variance
    VP - Moving average price variance
    Regards,
    Kathir

Maybe you are looking for

  • XML in Flash Taking out the "space" between words

    I have a xml document that flash reads to pull random words from it. I replace the letters of the words with a character, right now its a minus sign (-). What I am haveing problem with is I don't want the spaces between the words to be replaced. I wa

  • Can Microsoft Access run on MAC

    Hi, I'm making the switch from PC to MAC, but I need to know if Microsoft access can run on a MAC platform? Any help?

  • Full-Page View With Pages 3.0.3?

    Nothing on Apple's download page, but does the Pages 3.0.3 Update include any new, or beefed-up, features? Is there a way for Pages '08 to perform in full-screen mode, like in Pages '09? I'm installing a fresh system. Can I go from the iWork '08 inst

  • Combine multiple record column valus into 1

    Hi All, When I run a simple sql Select C1,C2,C3 from Tab; I get these values x,y,1 x,y,2 x,y,3 x1,y1,8 x1,y1,10 How do I these to show up like this x,y,(1,2,3) x1,y1,(8,10) using only SQL query Appreciate any ideas. Thanks.

  • How does low-grade encryption differ from encryption?

    In Options\Warning Messages\Settings, what distinguishes low-grade encryption from just encryption? Why is low-grade the only default? I don't know much about encryption, but I want to set these messages the best way for me.