Query on Notification

navigation:
Resp : System administrator.
Menu : Workflow : Administrator Workflow
Function : Notifications
Then Select "Notification From Me" in View Pop List.
Got Some Notifications :
Why there is only one page every product notification '/oracle/apps/fnd/wf/worklist/webui/NotifDetailsPG'.
If i need to customize this notifcation Page with consideration product functionality , what steps should i taken for it?
Thanks, Avaneesh

If you want to embed notifications in any other product page then follow the instructions in OAF Dev guide -> Notifications (Workflow Worklist).

Similar Messages

  • Query based change notifications

    Hi,
    am trying to use the query based notifications, but it seems to switch over to the object based notification for some reason. My environment is Oracle 11.2 ( I believe you need 11.1 or above for query based to work) and I have a select statement which retrieves a column which is of type NUMBER. (Again here my understanding is that only varchar2 and number columns work). I seem to get every change notification on the table and not just my flltered dataset
    As an example I've created a sample table called test_db_notification with a single column of type NUMBER.
    desc test_db_notification
    Name Null Type
    COLUMN1 NUMBER
    Added two entries in there as follows:
    SELECT rowid,column1 FROM test_db_notification;
    ROWID                          COLUMN1
    AAAERnAAKAAEurNAAI                54
    AAAERnAAKAAEurPAAA                63           
    Here's my code to register for notification:
         OracleCommand cmdObj = connObj.CreateCommand();
    cmdObj.CommandText = " SELECT column1 FROM testdb_notification where column1 = 63";
    _dep = new OracleDependency(_cmdObj);
    _dep.QueryBasedNotification = true;
    _dep.OnChange += new OnChangeEventHandler(_dep_OnChange);
    _cmdObj.Notification.IsNotifiedOnce = false;
    _cmdObj.AddRowid = true;
    _cmdObj.ExecuteNonQuery();
    When I register and change the value of column1 where the current value is 54, I get back a notification saying the ROWID for 54 has been updated.
    I was expecting not to receive any notifications since my original query looks only at column1 = 63. Am I missing something here?

    Hi,
    This isnt related to the beta.
    From the CQN docs..
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28424/adfns_cqn.htm#CHDIEJEI
    You must be connected as a non-SYS user in order to create CQN registrations.
    Hope it helps,
    Greg

  • Collabd.notifications errors in lion

    I get heaps of errors in lion server.
    one that pops up every few seconds is the following:
    Seems like the code or my DB table is wrong?
    03.02.12 08:00:02,573 collabd: [PGCConnection:122 1cba20 +0ms] Error in TXN: Error executing query [UPDATE notification SET batch_token=$1, batch_timestamp=$2 WHERE batch_token IS NULL]: ERROR:  column "batch_token" does not exist
    LINE 1: ...tion SET batch_token=$1, batch_timestamp=$2 WHERE batch_toke...
                                                                 ^
              0   CoreFoundation                      0x00007fff8e16efc6 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8a034d5e objc_exception_throw + 43
              2   PostgreSQLClient                    0x000000010192c81c -[PGCConnection executeQuery:withParams:] + 0
              3   PostgreSQLClient                    0x000000010192d1ad -[PGCConnection executeUpdate:withParams:] + 787
              4   CSService                           0x00000001018b8c3c __49-[CSContentService processNotificationsForBatch:]_block_invoke_0 + 103
              5   PostgreSQLClient                    0x000000010192c518 -[PGCConnection transactionInBlock:onError:] + 91
              6   PostgreSQLClient                    0x000000010192c4b5 -[PGCConnection transactionInBlock:] + 25
              7   CSService                           0x00000001018b8b9e -[CSContentService processNotificationsForBatch:] + 160
              8   CoreFoundation                      0x00007fff8e160f4c __invoking___ + 140
              9   CoreFoundation                      0x00007fff8e160de4 -[NSInvocation invoke] + 132
              10  CSService                           0x00000001018907f9 __52-[CSServiceDispatcher executeRequest:asPartOfBatch:]_block_invoke_0 + 28
              11  CSService                           0x0000000101893d98 +[CSExecutionTimer timerNamed:aroundBlock:] + 66
              12  CSService                           0x00000001018905ee -[CSServiceDispatcher executeRequest:asPartOfBatch:] + 1706
              13  CSService                           0x0000000101890936 -[CSServiceDispatcher executeRequest:] + 74
              14  collabd                             0x000000010183d8ba __61-[CSServiceDispatchHTTPConnection httpResponseForMethod:URI:]_block_invoke_0 + 357
              15  collabd                             0x000000010183e7e5 -[CSHTTPBackgroundResponse bounce:] + 19
              16  Foundation                          0x00007fff91a1974e -[NSThread main] + 68
              17  Foundation                          0x00007fff91a196c6 __NSThread__main__ + 1575
              18  libsystem_c.dylib                   0x00007fff8a9998bf _pthread_start + 335
              19  libsystem_c.dylib                   0x00007fff8a99cb75 thread_start + 13

    This is the only DNS malware, but I don't know that it's even functioning.
    For the DNS Changer malware see the following:
    Will your internet service cut off on July 9?
    DCWG | DNS Changer Working Group
    How to remove the DNS Changer malware

  • Notification oracle

    Hi Experts,
    Could you please someone advise whether the query change notification is supported by oracle 11g release1?
    RCM_DB@gcets>
    RCM_DB@gcets> declare
    2 reginfo cq_notification$_reg_info;
    3 v_cursor sys_refcursor;
    4 regid number;
    5 begin
    6 reginfo := cq_notification$_reg_info('testbks',DBMS_CQ_NOTIFICATION.QOS_QUERY,0,0,0);
    7 regid := dbms_cq_notification.new_reg_start(reginfo);
    8 open v_cursor for select name from kk;
    9 close v_cursor;
    10 dbms_cq_notification.reg_end;
    11 end;
    12
    13 /
    declare
    ERROR at line 1:
    ORA-29976: Unsupported query for registration in guaranteed mode
    ORA-06512: at line 8
    Oracle documentation cliams that it's supported from oracle 11g release 1 onwards.. here is the link
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_cqnotif.htm
    Please let me know if I am missing something here?
    Regards,
    Richard

    See restrictions documented in [url http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28424/adfns_cqn.htm#CHDGEBFH]Queries that Can Be Registered for Query Result Change Notification

  • Oracle Workflow Email Notifications

    Hi,
    I have created a custom workflow and role(using user management). The notification_preference for this role is defaulting to QUERY. From what I have understood is that when the notification_preference is set to 'QUERY' the users in the role receive email notifications based on their preference(MAILHTML). However, no emails are being sent.
    I updated the notification_preference to 'MAILHTML' in the wf_local_roles and the notifications started pouring in. Why aren't there email notifications being sent when notification_preference is 'QUERY'. Is there a UI way to update this role preference?
    Regards,
    Dheeraj

    QUERY is actually used not to receive mails, the notifications are only available on the application notification list for the user:
    From the documentation:
    Do not send me mail (QUERY) - The notification mailers do not send you e-mail notifications. Instead you must query and respond to your notifications from the Worklist web page.
    The preference is updateable for end users via the preferences link on the home page (if not displayed, enable it via personalization).
    As you mention this being a custom role, I don't know if the preference could be set via the user management responsibility, though.

  • How can I email enable "My Notifications"?

    Hi all,
    I had this posted in the Portal API section with no
    answers.
    I need to have "My Notifications" portlet send out emails as well as displaying the notifications in the portlet.
    So I have the following questions:
    1. Is there an API available for the Notifications?
    2. Worst case scenario - does anyone know what table(s) to query for notification info?
    Regards.
    Anton.

    Hi Jerry,
    Its good to hear that its planned for a future release!
    In the meantime I HAVE to find an interim solution - is there any info anywhere on the internal tables used?
    I have looked at the table WWSBR_ITEM_APPROVAL$ and also a function WWSBR_API_APPROVAL.get_approval_notice(), which look promising, but I could not find a solution that consistently gives the correct results. Any help would be really appreciated!
    Regards.
    Anton.

  • Best Practice on Updating From a DB

    Hi Everyone,
    What are some best practices surrounding getting data from an oracle database into the cache layer when a data change event (insert, update, delete) happens? I've searched far and wide and the best answer I can find is to use Extractor/Replicator -> JMS -> Subscriber -> cache.
    Thank you for your help.

    You're right, DCN is interesting idea, but it's again the case where technology is working on simple Hello World things, but fails to deliver on real word.
    To me DCN looks like an unfinished Oracle project, lot of marketing stuff, but poor features, it's good mostly to student's works or testlabs, but not for real world complexity.
    Two reasons:
    1.DCN has severe limitations on complexity of joins and queries in case you plan to use query change notification feature.
    2. it puts too bug pressure on database by creating a tons on events, when you don't need and don't expect them, because it's too generic.
    Instead of DCN, create ordinary Oracle AQ queues, using tiny SQL object type event as a payload, then create triggers and/or PL/SQL stored procedures, which ale filling the event with all the primary keys you need and the unique ID of the object you need to extract.
    Triggers will filter out unnesessary updates, sending events only when you wish.
    If conditions are too complex for triggers, you may create & place events either by call from the event source app itself or on scheduled basis, it's entirely up to you. Also, technique with creating object views + using instead of trigger on this object view works pretty well.
    And finally, implement listener at Coherence side, which will be reading the event, making necessary extracts & assemble Java object ready to be placed into the cache, based on the event ID and set of event's primary keys. After Java object will be assembled, you can place it into the cache.
    Don't use Hibernate, TopLink or any other relational-to-object frameworks, they're too slow and add excessive and unnecessary overhead to the process, use standard Oracle database features, they're much faster and transaction-safe. Usage of these frameworks within 10g or 11g database is obsolete and caused mainly by lack of knowledge among Java developers about database features on this regard.
    In order to make a whole system fail-safe and scalable, you have to implement listener in fail-safe fashion, in a form of workmanager + slave processes, spawned on the other nodes.Work manager has to be auto fail-safe and auto scalable, so that if the node holding work manager instance fails due to cache cluster member departure or reset or smth else, another workmanager is automatically spawned on first available node.
    Also, workmanager should spread & synchronize the work among the slave listener processes based on the current cache cluster members, automatically re-balancing and recovering work in case of cache member join/departure.
    Out-of-the box Coherence has an implementation of workmanager, but it's not fail-safe and does not provide automatic scale-up/recover work features described above, so you have to implement your own.
    All the features I've described are implemented and happily used in complex OLTP + workflow system backed up by big Oracle RAC cluster with huge workload, processing millions transactions per day.

  • Mail and Spotlight

    I'm running Mail v2.1 (752/752.2) under OSX.4.7
    I have an email which appears, for example, as 11200.emlx in the path ~/Library/Mail/Mailboxes/Mac/Apple.mbox/Messages/11200.emlx so why can I not find it using Spotlight and the literal 11200.emlx?
    I ask because my back-up software (Intego's PersonalBackupX4) is constantly hanging during execution of a script which backs-up Mail to a memory stick and the culprit is always an nnnnn.emlx file. There appear to be several of these (I have no idea why) so I have been checking the offending files and deleting them if they are of no consequence. No sooner have I deleted one and run the script again than it encounters another such file.
    But this means trawling manually through every Mail file to find out where the culprit resides - so why can't Spotlight find them for me? It would be much quicker.
    It isn't all nnnnn.emlx files as many are backed up as expected and nor do I think that the files are virus infected as I run VirusBarrierX4.
    Any suggestions?
    Thanks.
    700MHz CRT PowerPC G3 iMac slot-loading CD-R/W   Mac OS X (10.4.7)   1GB Crucial RAM

    The thing is you asked this very same question in
    August, I provided the same advice there, and you
    just ignored it, so I guess I'm wasting my time
    here...
    Please accept my sincere apologies, David, I claim (rather weakly) a senior moment. Now that you remind me I do remember - and I have no explanation as to how I missed your response as I always try to acknowledge responders to any of my silly questions! I can only assume that, as I unexpectedly went away for more than a week the day after posting that query, the notification of your response got buried in the inevitable deluge of emails awaiting me on my return.
    An unpardonable oversight on my part for which I apologise.
    But that question was partly different - it was about how to identify the specific files which I have now done "manually" by watching PersonalBackup until it hung.
    PB shows the "current file" and that's how I knew which one(s) were doing it - but I then couldn't find the individual file with Spotlight, hence this slightly different question. I had to trawl through all my emails until I found the offender - an ongoing time consuming process which bores me to tears as I keep on meeting yet another email that hangs the process!
    I have indeed verified/repaired permissions, both with Disk Utility and OnyX on a periodic basis and with Macaroni automatically every three days. I also have both DiskWarrior and TechTool Pro permanently monitoring my system. I have also done several "repairs" on my Mail application, based on advice from this forum, as I was having a number of problems with Mail (incorrect unread message numbers, junk mail peculiarities, etc.) all of which have now been resolved. Indeed, you contributed extremely usefully to that discussion as well and I followed your advice to the letter!
    You aren't wasting your time and I'm sorry if you think that you were.
    But I'm still noreally much the wiser as to finding the ultimate solution!

  • WF_NOTIFICATION.send

    Hi All,
    I am trying to use WF_NOTIFICATION.send for the 1st time. The requirement is that I have following piece of code in my pl/sql package which is called form the function activity of the workflow. The following code is inside the loop of the supplier list. So I want to send the notification to each of the supplier picked up in the loop.
    If it not giving me any error in pl/sql or workflow, with debug I have checked it it getting correct value for l_tp_contact but still when I log-in as the supplier (user) in the worklist there is no message to that supplier.
    =====
    l_notification_id := WF_NOTIFICATION.send (role      => l_tp_contact,
                   context     => p_itemtype||':'||p_itemkey||':'||to_char(p_actid),
                                  msg_type      => 'PONAWARD',
                                  msg_name      => l_message_name);
    ===
    Can some one please help.
    Thanks!

    I am guessing, because I haven't done this with PL/SQL code before, but when you say you are looping through suppliers, is this a loop in your PL/SQL or a loop in the workflow? I have had problems before with notifications not being generated from inside a workflow loop because I had my On Revisit set incorrectly (Reset instead of Loop) on the notification step.
    Also, is the notification a response required notification or an FYI notification? Where the notification is an FYI, the status of the notification can be updated when generating the email, so querying open notifications on the supplier's worklist could be missing it where the email has been generated.
    A good check for both of these is to see if you can find anything in the WF_NOTIFICATIONS table for these notifications?
    theFurryOne

  • Reject Oracle iExpense Report through WF_NOTIFICATION.SetAttrText

    Dear Gurus,
    I have a huge number of iExpense Reports which are pending for the user approval. I am using the following code to Reject all such reports:
    begin
    wf_notification.setattrtext ( nid => :notification_id
                                    , aname => 'RESULT'
                                    , avalue => 'REJECT' ); 
        wf_notification.respond ( nid => :notification_id );
    commit;
        end;
    when I query the notification table after running the above code, the status of the notification is "CLOSED" but the expense report is still waiting for approval.Further more the user who created the report never gets to be notified that his report is rejected.
    Am I missing anything any help would be appreciated.

    dear All ,
    I resolved the issue using the following :
    wf_notification.setattrtext ( nid => :notification_id
                                    , aname => 'RESULT'
                                    , avalue => 'REJECTED' ); 
                                    wf_notification.setattrtext ( nid => :notification_id
                                    , aname => 'WF_NOTE'
                                    , avalue => 'Auto Rejected as the BM is older than 30 days' ); 
        wf_notification.respond ( nid => :notification_id);

  • Warning Message in query result as 'Notification Number DBMAN 345'

    Hi ,
    I have a warning message while executing the query
    'Diagnosis
    Currently, it cannot be guaranteed that SIDs and master data exists for all characteristic attributes for the DataStore object to be read.
    There is a restriction on a navigation attribute of the listed characteristic in the query. This filters all characteristic values of the master-data bearing characteristic for which there is not yet master data out of the result.
    For performance reasons, this filtering is unavoidable.
    System Response
    Procedure
    In case of doubt, find other restirctions directly on the characteristic values of the characteristics contained in the DataStore object.
    Procedure for System Administration
      Notification Number DBMAN 345  '
    'i am getting this error because of cutomer exit variables  on navigatioanl attributes of  Omaterial'
    I tried supressing it in  RSRT.. but unable to find the message.
    I tried  debugging and assigning enhancement points in  FM  BAL_LOG_MSG_READ.. As it is standard function module its not suggestable to do..
    can we creat custom FM ?? will it be called if we  write code to supress warning message??
    Please let me know how to use  BADI'S  in order to supress the error message that appearing in query result?
    Thanks All.

    Hi,
    The warning is raised due to the following reasons:
      - you have a selection in the filter of a navigation attribute
      - in your DSO you do not use the option "SIDs Generation upon Activation"
    If the option "SIDs Generation upon Activation" is not flagged,
    you may get char.values for an Infoobject in the system not
    having any SIDs. As a result you may see in the report less data as
    expected.
    For example we have Infoobject A with its Nav.attribute B
      Infoobject A   Nav.attribute B
      12             13   ->> has a SID in the X-table
      11             10
      9              13   ->> has no SID in the X-table
    If you define a selection on B =13 in the query, you only get infoobject
    A with key 12 displayed in the result, since only B =13 has a SID
    in the relevant X-table.
    The warning refers to this behaviour and cannot be avoided unless you:
       - flag the option in the ODS-settings
       - or remove the filter defined on 0MATERIAL__xxxx
    Thanks,
    Venkat

  • DeadLocks on Query Notifications with SQL Server 2008 SP3

    Hello,
    according to this article https://support.microsoft.com/kb/975090 the issue with deadlocks on query notifications should be fixed with SQL Server 2008 SP3 (10.0.5500.0). But we still get deadlocks in the following manner:
    <resource-list>
    <keylock hobtid="72057598393909248" dbid="5" objectname="MyDB.sys.query_notification_1411013420" indexname="cidx" id="lock1731c1f00" mode="RangeX-X" associatedObjectId="72057598393909248">
    <owner-list>
    <owner id="process573dc8" mode="RangeX-X"/>
    </owner-list>
    <waiter-list>
    <waiter id="process58ddc8" mode="RangeS-U" requestType="wait"/>
    </waiter-list>
    </keylock>
    <keylock hobtid="72057598372872192" dbid="5" objectname="MyDB.sys.query_notification_253437289" indexname="cidx" id="lock800c8780" mode="RangeS-U" associatedObjectId="72057598372872192">
    <owner-list>
    <owner id="process58ddc8" mode="RangeS-U"/>
    </owner-list>
    <waiter-list>
    <waiter id="process573dc8" mode="RangeS-U" requestType="wait"/>
    </waiter-list>
    </keylock>
    </resource-list>
    Is there any need to install another fix?
    Thanks in Advance!

    Hello,
    SQL Server 2008 SP4 and all cumulative updates of SP3 do not have fixes related to deadlocks.
    Maybe the following workarounds and solutions can help in your scenario.
    http://stackoverflow.com/questions/3707137/understanding-deadlocks-with-sql-server-query-notifications
    Deadlock Prevention. In case you need to lock multiple conversation groups in a transaction, you need to take the same order to lock the different conversation groups in all transactions, otherwise you will have a deadlock issues.
    Source:
    http://blogs.msdn.com/b/kangmo/archive/2008/12/17/a-brief-guide-on-sql-server-service-broker.aspx
    Try to may transactions more simple and shorter.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Query Notification fail with unhandled exception (orageneric11.dll) error

    Please help
    trying to run "Continuous Query Notification Example" from
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28395/oci10new.htm
    (after some modifications example launchs and begin "waiting for Notifications")
    then i make changes in oracle table "test_table" which "myCallback" listens.
    After commit changes in table programm get notify about this changes and call function "myCallback"
    Then myCallback call function "processQueryChanges" which
    fail programm with exception in debug:
    "unhandled exception in mytest.exe (orageneric11.dll): 0x0000005 Access Violation"
    void processQueryChanges(....)
    for (i=0; i < num_queries; i++)
    //!!!!!fail in this string!!!!!
    checker(errhp, OCICollGetElem(envhp,
    errhp, (OCIColl *) query_changes,
    i, &exist, &query_descp, &elemind));
    I found version of the decision
    but it doesn't work
    decision text:
    To resolve this Oracle issue add the following entry to your SQLNET.ORA file.
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    DIAG_ADR_ENABLED=OFF
    DIAG_SIGHANDLER_ENABLED=FALSE
    DIAG_DDE_ENABLED=FALSE
    visual studio 6.0 sp6, oracle client 11.1.0
    Edited by: 958639 on 12.09.2012 6:00

    Hi Efstratios,
    Yes, I have imported all the transports and all of they are success. I am able to use SAP authentication and able to create connection and retrive all InfoCubes and Quries also.  Error is only when i select the query to create universe.
    As i understand from the erros shown is , in the server some graphis card or driver is missing.
    Moreever, I am looking for loging into the Desinger using SAP authentication from Client machine.  For SAP authentication, i should install Integration Kit in client machine.( corect me if i am wrong ). To install Integration KiT , it is asking Crystol report server in desktop before integration kit.
    Does it require ?
    Regards,
    Suresh

  • VO Auto Refresh error - Unsupported query for Continuous Query Notification

    I created a read only view object and set the auto refresh property to true. According to the documentation that was all that need to be done in order to enable auto-refresh for a view instance of a shared application module (which I am using to retrieve reference data). When I run a test, I get the following error:
    [371] DCBindingContainer.reportException :oracle.jbo.SQLStmtException
    [372] oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT
    CCIPO_REF_SENSITIVITY_LEVEL.SENSITIVITY_ID SENSITIVITY_ID,
    CCIPO_REF_SENSITIVITY_LEVEL.SENSITIVITY_DESC SENSITIVITY_DESC
    FROM
    CCIPO_REF_SENSITIVITY_LEVEL
         at oracle.jbo.server.BaseSQLBuilderImpl.processException(BaseSQLBuilderImpl.java:3721)
         at oracle.jbo.server.OracleSQLBuilderImpl.processException(OracleSQLBuilderImpl.java:4722)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:1386)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:928)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:6968)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1183)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1037)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2774)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2751)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1580)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:3500)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:9943)
         at oracle.adf.model.binding.DCIteratorBinding.setupRSIstate(DCIteratorBinding.java:779)
         at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:679)
         at oracle.jbo.uicli.binding.JUIteratorBinding.refreshControl(JUIteratorBinding.java:474)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4437)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:347)
         at oracle.adf.model.binding.DCIteratorBinding.getRowSetIterator(DCIteratorBinding.java:1605)
         at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:116)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:88)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:71)
         at oracle.jbo.jbotester.form.BindingForm.createMasterPanel(BindingForm.java:63)
         at oracle.jbo.jbotester.form.BindingForm.init(BindingForm.java:98)
         at oracle.jbo.jbotester.form.JTForm.<init>(JTForm.java:72)
         at oracle.jbo.jbotester.form.BindingForm.<init>(BindingForm.java:50)
         at oracle.jbo.jbotester.form.FormType$1.createForm(FormType.java:63)
         at oracle.jbo.jbotester.form.FormType.createForm(FormType.java:199)
         at oracle.jbo.jbotester.form.FormType.createTab(FormType.java:270)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:248)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:207)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:203)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:140)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:123)
         at oracle.jbo.jbotester.tree.Tree.processTreeMouseClicked(Tree.java:728)
         at oracle.jbo.jbotester.tree.Tree.access$100(Tree.java:96)
         at oracle.jbo.jbotester.tree.Tree$TreeMouseListener.mouseClicked(Tree.java:141)
         at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:253)
         at java.awt.Component.processMouseEvent(Component.java:6292)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4247)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: ORA-29983: Unsupported query for Continuous Query Notification
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:924)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1261)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1419)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3752)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3806)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1667)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:1262)
         ... 65 more
    The query is selecting two varchar2 columns and according to the criteria in the documentation is valid to be registered for QRCN in Guaranteed Mode. Any thoughts?
    JDev version: JDeveloper 11.1.1.5.0.

    Well, could be a DB bug. I seem to remember that there was a bug in that area in an older version of 11g.
    Or you could use jnettrace to trace the calls made by the driver to the DB. That should show you what's going wrong.
    Sascha

  • Hide the update power query notification

    I've recently installed Power Query for Excel 2013 Pro Plus. (not click-to-run)
    Power Query has been updated already and now this message is appearing on all the user's computers.
    Any ideas as to how I can hide this message using the registry and/or group policy?

    There is no way to hide the notification, though I believe the most recent version will annoy you less often than previous ones. When you go to the "About" prompt on the Power Query tab, what version number does it show?

Maybe you are looking for

  • Firefox won't run, but says it is when I try to unistall it - Win 7 task manager says it isn't..how can I get around this to uninstall it?

    I have been trying to open a browser window with Mozilla Firefox 6.0.2 (x86 en-US). It won't run, however, when I try to uninstall the program, it says I have to close firefox first. Win 7 task manager does not show the program as running. I tried ag

  • Adding New Text Comment in Traditional Chinese shows Error

    When adding New Text Comment in Traditional Chinese , it pops up a window with "Error, but instal the latest version of Traditional Chinese Language Support Package may fix the error", but I have installed the latest one (Adobe Acrobat Reader DC 2015

  • ActiveMovie Window pop up

    I've recently finished a project however clients have come back with an issue where video in the project plays in a separate window instead of the projector programme window.  There is quite a lot on the general forums relating to this and it seems t

  • X200 & x301 Internal error (error code =1) API failed

    Trying to get mobile broadband working on these 2 laptops. Both have ericsson wwan card and I'm using O2 sim. ThinkVantage 5.20 installed on both which apparently should fix the problem Any assistance would be great Cheers

  • ITunes 8 cuts and pops audio

    I first noticed while playing video podcasts that audio would stop and start randomly. At first I chalked this up to being a bad download or something. However audio continues to cut out in TV Shows I download and pre-existing music does it now too.