Discoverer Preferred Preferences

Our environment:
OracleBI Discoverer 10g (10.1.2.2)
Oracle Business Intelligence Discoverer Plus 10g (10.1.2.54.25)
Discoverer Model - 10.1.2.54.25
Discoverer Server - 10.1.2.54.25
End User Layer - 5.1.1.0.0.0
End User Layer Library - 10.1.2.54.25
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
People in our user group and I are inclined to switch the "Aggregation Behavior" preferred preference 1 instead of the default 0. We recognize that this could produce erroneous results for some calculations (e.g. statistical or percentages are good examples).
As long as our user community is aware of this, are there any other risk associated with making this change?
Also, I am curious who has made this change in an Oracle Applications EUL environment?
Thanks,
Patrick

Hi Sandra
No problem, glad you saw the other posting.
When you launch the registry editor, REGEDIT, you will see 2 panes. The left pane contains folders and the right pane contains the items within those folders. To get to where Discoverer is stored you need to do the following:
1. Click the + key alongside HKEY_CURRENT_USER to expand the group
2. Locate and expand the Software group
3. Locate and expand the Oracle group
4. Locate and expand the Discoverer 10 group
Depending whether the machine is also using Discoverer Administration, you will now see all of some of the following folders:
Administrator
Application
Crosstab
Database
Debug
Fonts
Generic Properties
Report
Session Manager
Table
Of all these, when working in Desktop the only ones you will really need to be concerned with are Application and Database.
Click on Application for a second. In the right-hand pane you will see two differernt kinds of item. You will see some with an icon containing blue letters (these are numeric items), and you will see some that have an icon with brown letters a and b (these are text items).
When you're adding new items, you right-click in the right-hand pane and select New, followed by the type of item you want to add. For numeric items you pick DWORD, while for text items you pick String value.
For the numeric items, typically you will use 1 and 0, with 1 meaning true or on, and 0 meaning false or off.
Word of wisdom: you will generally not see all of the available options when you expand a folder. They are still being applied though and will typically be defaulted to 0. Sometimes you have to manually add items in order to change the behavior.
By the way, when you launch Desktop have you ever been frustrated by how long the Discoverer Desktop popup stays on the screen? This is just a setting. There is nothing going on behind the scenes while it is displaying, Oracle are just advertising. In the Application folder try changing the setting for SplashDelayMsecs from 4000 to 0 and see what happens. Your users will probably like this.
Best wishes
Michael

Similar Messages

  • Discoverer Viewer Preferences

    My configuration:
    OracleBI Discoverer 10g (10.1.2.2)
    Oracle Business Intelligence Discoverer Plus 10g (10.1.2.54.25)
    Discoverer Model - 10.1.2.54.25
    Discoverer Server - 10.1.2.54.25
    End User Layer - 5.1.1.0.0.0
    End User Layer Library - 10.1.2.54.25
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    Hi All,
    I have wanted to modify the viewer layout preferences as it pertains to the worksheet list. Specifically, I would like to change the order of the sort associated with this list (e.g. Sort by owner first, then workbook). I have looked over the configuration guide (http://download-east.oracle.com/docs/html/B13918_03/prefs.htm#i1012312) and Armstrong's book, to no avail.
    I presume this feature does not exist, but it would be helpful to know if anyone else has looked into this.
    Thanks,
    Patrick

    Hi Patrick
    This is Michael of the Armstrong book.
    Most things are possible, especially with Viewer. The whole of the Viewer interface is controlled using UIX files that are stored on the application server, however I am not sure that you will be able to decipher the code that controls how the workbooks are displayed. I also don't know the exact name of the file that controls the interface.
    One thing I do know is that if you modify the UIX behind the scenes you could invalidate your support contract. If you run into issues, at the very least Oracle will want you to reinstate their original code should you have any issues. You won't get support for files that you change.
    Best wishes
    Michael

  • Can Discoverer have link to display documents stored outside the database?

    I posted a message some time ago called "Possible for Discoverer to display BLOB type documents stored in database?" and got great answer.
    Now our customers are asking if it is possible, from Discoverer, to link somehow to a file stored outside the database on the Unix file system and get their computer to display it? Can anyone tell me if this is possible please?
    The only thing I've seen in the documentation that may be related is in Oracle Business Intelligence Discoverer Configuration Guide, section 10.6 List of Discoverer user preferences. It says there that Discoverer preference ProtocolList can be set so that Discoverer hyperlinks can be set to use protocols such as telnet, but the default is HTTP, HTTPS, and FTP.
    THank you in advance if you can help.
    Regards,
    Julie.

    Hi Rod,
    I have tried the second method: "create a Oracle directory pointing to the Unix directory containing the files". I have had success with it, but I'd be grateful if you could advise me if you would have done this the same way as described below:
    I put two Word docs and two text docs called clob_test1.txt, clob_test2.txt, blob_test1.doc, blob_test2 in the Unix directory corresponding to an Oracle directory called 'EIF'. I thought an extrenal table was needed so that Discoverer would have an object to write a queruy against. So I created a file called lob_test_data.txt with the following contents:
    1,01-JAN-2006,text/plain,clob_test1.txt
    2,02-JAN-2006,text/plain,clob_test2.txt
    3,01-JAN-2006,application/msword,blob_test1.doc
    4,02-JAN-2006,application/msword,blob_test2.
    THen I created an external table using the following DDL:
    CREATE TABLE jum_temp_lob_tab (
    file_id NUMBER(10),
    date_content DATE,
    mime_type VARCHAR2(100),
    blob_content BLOB
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY EIF
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE
    BADFILE EIF:'lob_tab_%a_%p.bad'
    LOGFILE EIF:'lob_tab_%a_%p.log'
    FIELDS TERMINATED BY ','
    MISSING FIELD VALUES ARE NULL
    file_id CHAR(10),
    date_content CHAR(11) DATE_FORMAT DATE MASK "DD-MON-YYYY",
    mime_type CHAR(100),
    blob_filename CHAR(100)
    COLUMN TRANSFORMS (blob_content FROM LOBFILE (blob_filename) FROM (EIF) BLOB)
    LOCATION ('lob_test_data.txt')
    PARALLEL 2
    REJECT LIMIT UNLIMITED
    then created a Discoverer End User Layer folder against this external table, and used exactly the same technique as we did for downloading the BLOB from the database table (creating a new folder item containing a URL calling a database procedure which calls the Oracle code to download the doc). THis worked, but sometimes my PC didn't seem to know that the Word docs were Word docs and it needed to launch Word. Other times it did manage to do this OK. It always displayed the two .txt files as HTML docs.
    Just wondered if you'd be good enough to critique this approach.
    THank you, Julie.

  • Discoverer plus Problem

    Hai Friends...
    I installed oracle 9ias 1.0.2.2 on 8.1.6 database.
    I am unable to run the discovere plus.
    I got the following error.
    Unable to connect to the discoverer has detected a conflict
    loading java class
    oracle/discover/corba/_st_DCILocator.
    I wouid appreciate any help.
    Cheers
    Gopi

    Gopi:
    When you completed the 9iAS installation, did you register the
    Discoverer Collector, Preferences, and Session?
    On a Windows NT / 2K environment, you can do this by launching:
    Programs -> Oracle Discoverer Server 4i Setup -> Register
    Preferences.
    Do this for each as listed above. The lack of a session object
    may be the source of your viewer problem as well.
    Regards,
    Discoverer Technical Team

  • Imac to HD TV

    Ok, I bought a Mini DVI to S-video cable so i could connect my IMac to my HD TV for watching movies and what not. But when I connect the Mini DVI cable every thing gets larger. Is this normal? Should I even worry about trying to fix it? Thanks for any help or advice.

    Hi Corey
    Go to: System Preferences / Display adjust the resolution for both the iMac and the TV.
    To keep both imac and TV displays set to your preferred preference settings.
    1. Use only extended desktop, switching to mirroring realy goofs up the imac's resolution.
    2. Leave the Mini DVI adapter, S-Video and TV connected up to the iMac and just turn off or change the input for the TV.
    It takes a little time to get use to how it works. On one of my first times out I thought I had lost iPhoto for sure! After dragging the iPhoto window to the TVs display to play a slideshow, I them turned the TV off! Later I could not find iPhoto and after some time sweating bullets in a panic, I turned on the TV and what a releaf there it was!
    To view a movie on the TV just drag the DVD Player Viewer over to the TV's display and select full screen from View on the menu bar. This will allow you to play the movies on the TV display and leave the iMac's display on desktop for normal use.
    Helpful Apple article's:
    [Connecting a television to use as a display|http://docs.info.apple.com/article.html?artnum=151827]
    [About the iMac Mini-DVI video out port|http://docs.info.apple.com/article.html?artnum=303086]
    Dennis

  • Is it safe to delete ALL caches and/or receipts?

    is it safe to delete ALL files and folders under "user/library/caches"? I was surprised to see how big it has gotten. and is it safe to delete "macintosh hd/library/caches"?
    how about receipts located in "user/library/receipts" and/or in "macintosh hd/library/receipts"?
    how about unders "user/library/preferences"?
    thanks for the help.

    Regarding receipts, as already provided check these links.
    http://docs.info.apple.com/article.html?artnum=25751
    http://docs.info.apple.com/article.html?artnum=25768
    Regarding the preference files at Home > Library > Preferences, these are the preference files for your applications and the Finder, etc. so if deleted for a particular application, this will require resetting your preferred preference settings for the application. If there is a preference file available for an application you have deleted, the application's preference file can also be deleted but these preference files take up very little hard drive space and cause no adverse effects if not deleted when the associated application is deleted.
    Are you trying to free up hard drive space? If so, check this link.
    http://www.thexlab.com/faqs/freeingspace.html

  • Photoshop CS6 Running Slow After GPU/RAM/CPU Upgrade?

    Hi all,
    I recently upgraded my Mac Pro 1,1 with the following:
    CPU Upgrade to 2 x 2.66GHz Quad Core
    RAM Upgrade to 14GB
    GFX Upgrade to ATI Radeon HD 5770 1024mb VRAM
    Everything seems fine. My temperatures are normal and things are seemingly speedy.
    My problem is that Photoshop CS6 seems to run a little slow. I'm only working on web files (72dpi) that are yes, sometimes quite long in length (5000px high), but that has never been an issue.
    Some problems I've noticed:
    When I click to edit text, it may take 2 seconds before I can start editing it
    When I scroll upwards it chugs a little
    If I grab an object/shape and drag it around too quick, it might lag a little
    I'm not sure how to explain it really, but for the couple hundred dollars I spent on upgrading my maching, I wouldn't expect any of these things to be an issue.
    Here are my photoshop performance settings:
    Any suggestions would help. No trolls please.

    thenewbeatTO wrote:
    Any suggestions would help. No trolls please.
    Something to try:  Reset Photoshop's preferences to defaults.
    Press and hold Command - Shift - Option immediately upon cold-starting Photoshop.  If you get the keys down quickly enough - and you have to be very quick - you'll get a prompt asking you to confirm deleting your current preferences.  Once you confirm that, Photoshop will start up with a default set of parameters, though you will still find you can select your named workspaces and (I believe) your Actions will all still be there.
    Try immediately to see if the problem recurs.  Then methodically make your preferred preferences changes, quit Photoshop, and restart, then test to see that the problem hasn't recurred.
    With some luck, you'll have cleared up the sluggishness, and will have been able to make all your preferences changes you like without it recurring.
    This really can work.
    -Noel

  • My ipod nano will not sync with anything

    about 2 months ago i bought an ipod nano 4gb. It has worked great until i updated my itunes the other day. I sync'ed it fine and added some songs, but now it will not sync with anything. not my computer, my buddies computer, or my xbox 360. it will charge though. I also have an ipd mini that works fine. i am getting very angry and i need some help befor i lose what is left on my already deminishing mind. PLEASE HELP ME!!!!!
    P.S. has anybody else noticed that apple has the worst support out there. i cant even get a phone number without buying a service plan

    Hey all, I had to call Apple Support to resolve the issue as nothing on the web provided an answer. So for all you out there having the same problem, here's the ituation and full resolution, so you can save time and money (if your product's warranty is expired).
    Situation: I bought a brand new Mac Air on 12/7/12 and tried to sync my 6th generation iPod nano (previously configured to a PC) with no sucess. ITunes was only allowing me to charge and eject the nano.
    Solution:
    1. Go to View>sidebar
    2. In the sidebar, click "iPod" under the Devicies category
    3. Click "Music" section next to "Summary" under the status bar
    4. Make sure "Sync" box is checked with your preferred preferences underneath
    5. Click "Sync" in bottom right corner of window
    Apparently, iTunes 11 is quite different and the sidebar with usual options and playlists does not appear unless selected in the "View" drop-down.
    FINISHED!  

  • My iPod Nano will not sync with my brand new Mac Air...will charge

    My iPod nano (touch) will not sync with my iTunes on my brand new Macbook Air. It will charge my iPod and give the option to eject the iPod, but it will not recognize my iPod to sync. Any ideas why and how to fix it?

    Hey all, I had to call Apple Support to resolve the issue as nothing on the web provided an answer. So for all you out there having the same problem, here's the ituation and full resolution, so you can save time and money (if your product's warranty is expired).
    Situation: I bought a brand new Mac Air on 12/7/12 and tried to sync my 6th generation iPod nano (previously configured to a PC) with no sucess. ITunes was only allowing me to charge and eject the nano.
    Solution:
    1. Go to View>sidebar
    2. In the sidebar, click "iPod" under the Devicies category
    3. Click "Music" section next to "Summary" under the status bar
    4. Make sure "Sync" box is checked with your preferred preferences underneath
    5. Click "Sync" in bottom right corner of window
    Apparently, iTunes 11 is quite different and the sidebar with usual options and playlists does not appear unless selected in the "View" drop-down.
    FINISHED!  

  • Quickie review:  Pages 2.0

    As I mentioned in another thread, I bought iWork '06 as my Apple store was pulling them out of the shipping container, so I'm pretty sure I got the first copy in Seattle. That should tell you how excited I was to get my hands on Pages 2.0 and give it a workout. Here are some of my initial thoughts, discoveries, disappointments:
    Preference window
    1. Surprisingly unchanged from Pages 1.x
    2. Still can't set default to "Show Layout" and "Show Invisibles" -- frustrating
    3. New preferences button for Auto-correction. I'm not a Word user, but I understand this feature exists there. Has a very simple correction database the user can add to; I see no reason why this couldn't be used to insert repeating or boilerplate text
    Newsletter test
    1. Opened new template called Sailing Newsletter; immediately received missing-font error message; ahhhhh, just like 1.0
    2. Entered text around wrapped object; text entered very quickly -- no slowdowns
    3. Scross speed was zippy
    Comment feature
    1. Extremely simple to insert comments, but no keyboard shortcut
    2. Comment adds owner's name, date & time; owner's name, while the default setting, can be replaced with someone else's name on a temporary basis
    3. Comment text can be formatted
    4. Put your cursor in a word, select Insert > Comment, and the word is highlighted yellow; or you can highlight a word, phrase, sentence, or whatever and it highlights yellow when you add a comment
    Overall view
    1. Having the Thumbnail and Comments panes, plus your document window, open takes up too much room on my 14-inch iBook; had to shut off Thumbnail pane
    New goodies
    1. Link inspector adds new Merge button
    2. "Draw a Shape" command; very interesting -- I played with it briefly. I have no use for it, but others might
    3. Search pane stays on continuously (unlike 1.0's search window), works like Spotlight, shows page numbers with some text for context. Note that it adds yet another pane to eat up precious real estate on small monitors
    Exporting
    1. Didn't try HTML, so don't know if it's improved
    2. In general, exporting works same as before; can't default to Word or RTF format
    3. Export window redesigned to no useful effect
    Bookmarks
    1. Authors will like this: bookmarks finally sort correctly -- and stay sorted
    My 400-page manuscript
    1. Scrolls quickly, but it did that in 1.0
    2. First time I Saved, it notified me that I needed to do a Save As due to 2.0 upgrade. I selected Save As, wheel of death appeared for about 2 minutes before Save window appeared. Yikes! That was scary.
    3. With Commnets pane open, Inspector window covers my document; had to move window over to left where it gets covered by dock
    4. Tight fit with Comments and Styles panes plus doc window
    5. New Page Up/Down arrows at bottom of screen
    Missing (and presumed dead)
    1. Decent word count -- looks same as 1.0
    2. Decent spell checker -- ditto
    3. Go To page number (what writer wouldn't want this feature?)
    Closing thoughts
    These observations were made after using the program for about 10 minutes, so they are far from comprehensive. I wanted to post something quickly, given the overwhelming anxiety for information regarding the update. As those of you who've read my posts know, I'm a huge supporter of Pages and have been using it from the first day it became available last year. I have to say, though, that I think 2.0 will be a huge disappointment to those who had specific features in mind for the update. But then, when Steve didn't demo it during the keynote, I got an inkling that there was going to be nothing substantial that he might have demonstrated to a hungry audience. Now that I've used it, I'm left with two thoughts: 1) I'm glad they didn't screw it up by throwing in the kitchen sink; and 2) this is the best they could do in a year? I don't want to sound cynical about this, but this could easily be Pages version 1.1. It's far from meriting a 2.0 designation. Why? Those of us whose work is almost exclusively text based will find few improvements to enjoy; those of you whose work is graphic based will still find critical features missing.
    Finally, I've have no problems with Pages and I never have. It handles my manuscript flawlessly -- something Nisus Writer Express couldn't do. So I'm disappointed that the few things I wanted added (Page go-to, context-sensitive word count, more robust spell-checking) still don't exist. Maybe next year.
    iBook 14 incher   Mac OS X (10.4.3)  

    What I read in the PDF version of the manual (while I was waiting for my plane this afternoon), it seems pretty comprehensive. I was particularly interested in what it had to say about creating your own templates.
    Supposedly, it will remember if I left invisibles showing in templates (one of my big complaints with Pages 1). I'll find out soon enough. I must say that opening my two documents I use for answering posts here in discussions sure did open faster & navigating an 11-page table was much faster.
    Another good thing I noticed, the font used for the serial number is much clearer & there were no confusing characters - O/0, S/5, etc.
    Peggy

  • Error migrating Discoverer preferences...

    Hi friends,
    I'm in the middle of a Discoverer migration (4i to 10.1.2 , Apps version: 11.5.10.2 DB: 9.2.0.8, OS: Red Hat Linux 2.1)
    I'm migrating the preferences following the 313418.1 Metalink note. (Step 5)
    Following the Discoverer Configuration Guide 10gR2, There, in appendix B.7.1 it says that command is:
    > <ORACLE_HOME_2>/discoverer/util/dis51pr -migrate -from 102
    I tried to execute and the result is:
    u01/erpbat/aeaora/disco10/bin/dis51pr: error while loading shared libraries: libTAO_PortableServer.so.1.3.1: cannot open shared object file: No such file or directory
    I've looked for libTAO_PortableServer.so.1.3.1 file, and I've found it under
    [appldes:]:/u01/erpbat/aeaora/disco10/discoverer/lib directory.
    (my ORACLE_HOME is /u01/erpbat/aeaora/disco10/)
    I tried to execute the dis51pr file under that directory, but with the same result...
    Any ideas?
    What is curious is that in the guide, the dis51pr file seems to be placed in ORACLE_HOME/discoverer/util directory... but ,it's not ther, it's in
    ORACLE_HOME/bin.. I don't know if it's important...)
    Any ideas?
    Thanks,
    Jose L

    Hi again,
    after solved that point... I thinked I'd finished the Discoverer installation (just neeed to create a script to set the appropiate ORACLE_HOME at startup)
    I had run opmnctl startall and opmnctl stopall with success (to test that all was OK..), but when I exit.. and enter in session again... then it didn't work... :-(
    I stopped all apps services and all discoverer services..
    I started apps services with success.. but when I tried to execute opmnctl startall again.. it failed ... (don't know why now! )
    Relevant information about that:
    Error:
    ias-component/process-type/process-set:
    Discoverer/PreferenceServer/PreferenceServer
    Error
    --> Process (pid=12309)
    failed to start a managed process after the maximum retry limit
    Log:
    /u01/erpbat/aeaora/disco10/opmn/logs/Discoverer~PreferenceServer~1
    opmnctl status
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    WebCache | WebCache | 21691 | Alive
    WebCache | WebCacheAdmin | 21645 | Alive
    OC4J | home | 21652 | Alive
    OC4J | OC4J_BI_Forms | 21653 | Alive
    HTTP_Server | HTTP_Server | 21657 | Alive
    Discoverer | ServicesStatus | 21658 | Alive
    Discoverer | PreferenceServer | N/A | Down
    DSA | DSA | N/A | Down
    So the error seems to be with PreferenceServer...
    I've found a note in metalink with exactly the same error:
    Subject: Discoverer Preferenceserver Process Does Not Start on 10g Install -
         'failed to start a managed process after the maximum retry limit' Error
    Doc ID: Note:312252.1
    but in this note .. it says that the cause is the etc/hosts file...
    I don't think so because that file wasn't be changed since June... (and... this worked in the last execution) so... I have no ideas for the moment...
    Any idea?
    (Another bit problem, I don't know if it's in relation is that... I can't access through 7777 port to discoverer from my PC. That's the port chosen by default installation to HTTP Server.. and I changed in httpd.conf and in Profile options..)
    Thanks,
    Jose

  • Since upgrading to Lion OS, the wifi connectivity keeps blocking up intermittently and we need to manually keep switching on and off the wifi utility to get the connection back. even locking the preferred wifi network in system preferences does not help.

    Since upgrading to Lion OS 10.7.1, the wifi connectivity keeps blocking up intermittently and we need to manually keep switching on and off the wifi utility to get the connection back. even locking the preferred wifi network in system preferences does not help. This never used to happen with Snow Leopard

    This is a big thank you to Rys Sinnefeldt who posted this fix.
    Rys has made this fix very easy to do and takes literally 2 mins. It involves replacing the Atheros Lion driver 4.0 and replacing it with the snow leopard driver. Don't worry, Rys has made this so simple to do even I could do it and so far I have had no more wifi drops.
    follow this link
    http://rys.pixeltards.com/2011/09/04/osx-lion-wifi.html
    Thanks again to Rys.

  • Cannot add preferred networks in network preference

    Dear all,
    I have a quite strange problem after someday. Every time I switch AirPort on, I have to choose the wireless network from the list available, and the computer doesn't join the right network automatically.
    I went to Network -> AirPort -> Advanced, and I found the reason is that there is no preferred network stored there. Even I chose the option "remember networks this computer has joined", the computer couldn't remember any wireless network I joined. Then I tried to add a known network manually, but System Preferences just kept quitting unexpectedly after I clicked "OK" to save the network I just added.
    Any ideas why this happened?
    Many thanks,
    Xiaowen

    Then try a simple reset of you wireless connections. Just disconnect to any wireless connections. Then go to System Preferences (in your Dock)->Network pane and at the top of that pane use the drop-down "Location". Create a new Custom Location calling it whatever you want. Then at the bottom of the Network pane click on the 'Apply' button to save your new Location. Lastly rejoin your wireless network and see if it is add or you can manually add one.

  • My bluetooth on my computer will not work.  I have checked 'ON' and DISCOVERABLE in system preferences.  I have restarted the computer.

    My bluetooth on my computer will not work.  I have checked 'ON' and DISCOVERABLE in system preferences.  I have restarted the computer. 

    Since you can get them working, at least temporarily, make those Favorites. If that doesn't help, then go into your home folder library and move the following to the Trash (but don't empty the Trash--if this doesn't help, you can always use File>Put Back to restore it to its original location.)
    In ByHost
    com.apple.Bluetooth.<long string of characters and numbers>.plist
    If you do this, you will need to reconfigure your Bluetooth settings. Might take  screen shots of them first (Cmd-Shift-4) Setting up Bluetooth again will create a brand new preference file.
    EDIT:  That's in your home folder library>Preferences.

  • Discoverer Preferences

    Discoverer 9.0.2
    Edited pref.txt file and applied changes using applypreferences.sh. Stopped and started OracleAS Discoverer Services.
    In Discoverer Plus the new preferences are not being applied, e.g. stopping the query predictor altogether. Using Desktop, the preferences are being applied.
    How can we get the new preferences to be applied in Discoverer Plus? Thanks.

    Discoverer 9.0.2
    Edited pref.txt file and applied changes using applypreferences.sh. Stopped and started OracleAS Discoverer Services.
    In Discoverer Plus the new preferences are not being applied, e.g. stopping the query predictor altogether. Using Desktop, the preferences are being applied.
    How can we get the new preferences to be applied in Discoverer Plus? Thanks.

Maybe you are looking for