Drill error with discoverer Viewer

Hi,
i'm not able to drill up and down with discoverer viewer.
I've the following error when i click on icon : Object doesn't support this property or method
I've read some notes on metalink and maybe a patch is applicable to fix my problem. But i'm lost.. i don't have any experience with oas administration !
Spécifications :
Browser ie 7.0 with OracleBI Discoverer 10g (10.1.2.2)
Hope my explication are clear !!
thx in advance for help..
Jeff
Edited by: [email protected] on 2009-09-18 09:49

Jeff,
To get the fix you have to: Bug number -5673463
(a) Apply the 10.1.2.2 patch - you can get this on Metalink (4960210). It is a big patch (over 1 and half GB in size) and will upgrade your app server.
(b) Then apply the IE7 patch from Metalink (5758865).
Hope this will help

Similar Messages

  • HTTP 500 - Internal Server Error from Discoverer Viewer to Portal

    HI,
    I created a tab with a list of workbooks created with Discoverer Viewer and published with Discoverer Portliest Provider (List of Database Workbooks). Another tab contains four Discoverer Worksheets created with the same account. Everything works well but if i click on a report in list and open Discoverer Viewer, when i return to portal and go to tab containing worksheets i see message "HTTP 500 - Internal Server Error" and i'm not able to do anything. I only can close my browser and i must reconnect to portal!
    Can you help me?
    My portal version is cg (9.0.4), i'm using Windows 2000 ESP and Internet Explorer 6.
    I tried with Olin and Mazola but result did not change.
    I used a public connection bud i tried a private connection too. Nothing happened.

    The application.log file, under the OC4J which running your Discoverer provider, should give you some hints about the problem you're facing.
    Peter

  • Workbook with Discoverer Viewer in Apps 11i?

    With the help of (Doc ID: 278095.1) I was able to link Discoverer workbooks in Apps 11i. But all of my workbooks open with Discoverer Plus.
    How do I open some of the workbook with Discoverer Viewer in Apps 11i?
    I can open all my workbook directly with Discoverer Viewer without Apps 11i config.
    Current Function Settings (in 11i) are:
    Type: SSWA plsql function
    HTML Call: OracleOASIS.RunDiscoverer
    Thanks in advance for your help,

    Hi,
    Your workbooks are openned with viewer or plus depending on the profile 'ICX: Discoverer use Viewer'. You can override this by setting the viewer parameter on the call to OracleOASIS.RunDiscover. In the config of the Apps function that call OracleOASIS.RunDiscover, on the form tab add &VIEWER=Y or &VIEWER=N onto the end of the parameters. e.g workbook=myworkbook&parameters=param1~value1&viewer=Y
    Hope that helps,
    Rod West

  • Live sites with Discoverer Viewer

    Is there a list of sites available in the Internet with Discoverer Viewer working ? I would like to see some real live experiences with Viewer.
    thanks,

    Hi Simon
    That's really cool, although it is Discoverer 9.0.4, not 10.1.2.
    For anyone who is interested, Oracle made a lot of changes between the 9.0.4 Viewer and the 10.1.2 Viewer, not least being the ability to send a report via email, to save a report, to pivot the data and to handle fine grained printing using PDF. You can also set up a corporate look and feel for 10.1.2 Viewer using the OEM interface.
    With regards to the take up of Discoverer Viewer, most companies I work with are using it in a ratio of between 70:30 and 90:10 Viewer versus Plus.
    Its a great tool for doing exactly what it says - viewing a report.
    Best wishes
    Michael

  • Offline working with Discoverer Viewer 3i

    I work with Discoverer 3i and I have a problem.
    I can't save my pages (with Discoverer Viewer) in order to see
    them offline.
    Can you give me any solution???
    Thanks

    Hi Simon
    That's really cool, although it is Discoverer 9.0.4, not 10.1.2.
    For anyone who is interested, Oracle made a lot of changes between the 9.0.4 Viewer and the 10.1.2 Viewer, not least being the ability to send a report via email, to save a report, to pivot the data and to handle fine grained printing using PDF. You can also set up a corporate look and feel for 10.1.2 Viewer using the OEM interface.
    With regards to the take up of Discoverer Viewer, most companies I work with are using it in a ratio of between 70:30 and 90:10 Viewer versus Plus.
    Its a great tool for doing exactly what it says - viewing a report.
    Best wishes
    Michael

  • Workbook works fine in discoverer plus but shows error in discoverer viewer

    Hi,
    I have some issues with the parameter of a report.
    one of the parameters is
    mgr_id (eg: 1,2,3) -- from database table.
    manager names are not available in the database but they are known to users like
    1 - david
    2 - alan chris
    3 - peter
    so the requirement is
    (i) the input parameter wud be entered as 1 or 2 or 3 or null ( or in multiple combination or all).
    But the report shud have parameters in the header of the report.
    for eg: if the input parameter is mgr_id = '1' then the report shud have manager name: 'david' in the header.
    if the input is mgr_id = '1',' 2', '3' then on the report header, it shud display as manager name: 'david','alan chris','peter'
    (ii) the default value of mgr_id shud be 'ALL'. if the user enters mgr_id as 'ALL' then it shud take all the values of mgr_id and pull all the values of mgr_id (like 1,2,3)
    and the report header shud display as department name: 'ALL'
    i have developed a custom query where i used,
    select dept_id, decode(mgr.mgr_id,'1','david','2','alan chris','3','peter') as mgr_name, ..... etc.
    in discoverer admin,
    I have created LOVs (item classes) for mgr_name.
    after that going to properties of mgr_name, i have selected mgr_id as indexed item.
    and in the report i have created parameter dept based on mgr_name and selected the option -- allow to select both indexes and values.
    and in the default value i mentioned 'ALL'.
    after that i changed the condition as
    ((mgr_name = :manager name) OR (mgr_name LIKE DECODE(:manager name,'ALL','%')))
    and in the header, i used &department name --- then it displays correctly.
    but the problem is ---
    the report works fine in plus. the problem is only when parameter value is 'ALL'
    when i run the report from discoverer viewer for the very first time (after logging in), the report works fine with correct data.
    but when i run the same report second time with parameter value 'ALL', it gives an error ---
    Invalid value "''" for parameter "department name"
    i dont understand, why it works for first time and doesn't afterwards. If i logout and login again, it works fine in viewer.
    am i doing anything wrong in conditions or declaring the parameters?
    I came to know that, the very first time, when we enter 'ALL' it is taking '%' but when we run for the second time, it is taking NULL. since NULL isn't there in mgr_id or mgr_name, it is throwing that error.
    How do i fix this error?
    Thanks

    Hi Puppethead,
    I have tried with your suggestions.
    the following condition -- did not work
    ( (mgr_name = :manager name)
    OR (mgr_name LIKE DECODE(:manager name, 'ALL', '%', NULL)))
    but for the other condition ---
    ( (mgr_name = :manager name)
    OR (mgr_name LIKE DECODE(nvl(:manager name, 'ALL'), 'ALL', '%', NULL)))
    is wrong because, :manager name cud be null, when it is null, it takes 'ALL' i.e. '%' which shud not be the case.
    if the user enters null, it has to display records with null only but with the above condition it takes '%'
    The main issue which i dont understand is, the report works fine for the first time. for the second time, the report takes null values . why is it taking null values for the second time.
    Thanks

  • Drill to Detail - Discoverer Viewer

    I created a worksheet using discoverer plus with drill to detail option. It works fine in discoverer plus. But i don't know how to use this in discoverer viewer. Anyone knows how 'Drill to Detail' option can be used in Viewer?
    I am using discoverer 10g (10.1.2)
    Thanks

    While regular drills and drill to URL links and worksheet links are all available in Viewer, drill-to-detail is not yet available in Viewer.
    Thanks
    Abhinav
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN : http://www.oracle.com/technology/products/bi/
    Discoverer : http://www.oracle.com/technology/products/discoverer/
    BI Software : http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples : http://www.oracle.com/technology/products/bi/samples/
    Blog : http://oraclebi.blogspot.com/

  • Error with Discoverer ADministrator connection

    Hello:
    I´m working with IAS and Discoverer 10g R2.(the discoverer installation is in another Server)
    My problem is that i can't connect to Database with Discoverer Administrator because i have the error ORA.12170 of timeout.
    But if try to connect me for SQL*PLUS i dont have any problem.
    If i try with tnsping i get the same error message.
    C:\ora10_bi\opmn\bin>tnsping BDINFRA.aplicativo.com
    TNS Ping Utility for 32-bit Windows: Version 10.1.0.3.0 - Production on 29-AGO-2
    005 17:53:34
    Copyright (c) 1997, 2003, Oracle. All rights reserved.
    Archivos de parßmetros utilizados:
    C:\ora10_bitools\network\admin\sqlnet.ora
    Adaptador EZCONNECT utilizado para resolver el alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=BDINFRA.aplicativ
    o.com))(ADDRESS=(PROTOCOL=TCP)(HOST=216.187.103.170)(PORT=1521)))
    TNS-12535: TNS:timeout de la operacion
    My host don´t have the ip 216.187.103.170 and i don´t understan why the connection try to connect with the adpater EZCONNECT define in my sqlnet file.
    My tnsnames are:
    discoverer installation.
    BDINFRA =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = aplicativo)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = bdinfra.aplicativo.com)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = HOSTNAME)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
    infraestructure instalation
    BDINFRA =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = aplicativo)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = bdinfra.aplicativo.com)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = HOSTNAME)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
    How can i solve this problem?
    Thank you.

    Check the firewall settings on your server. Make sure that port 1521 is not blocked.

  • Error in Discoverer Viewer - Item cannot be found

    Hi,
    When i run a work book in discoverer viewer i receive an error "The following Item cannot be found: Workflow Item Attribute Values.Item Type. The same report is working fine from Desktop. Can anybody suggest what could the problem be?
    Regards
    Maytas

    Hi,
    The issue is resolved. The access to the underlying business area was not given to the user though the responsibility was assigned. Hence the error.
    Regards
    Maytas

  • Error with Discoverer

    We have just upgraded from Oracle Discoverer 10.1.2 to 11.1.1.3.0.And now we assigned a report to a certain responsibility and when I log into Discoverer plus with this responsibility a message box pop - up written 'Item '' is missing in the workbook.Do you want to continue' and when keep on clicking yes the worksheet appears.However when openning it from discoverer viewer returns the following message
    "Discoverer is unable to find the requested worksheet.
    - BIB-10310 An unknown exception occurred". I have checked all the recommended documents here in Metalink but they do not solve the problem and they apply to 10g version.

    Check the firewall settings on your server. Make sure that port 1521 is not blocked.

  • Problems with Discoverer Viewer and the printable page

    Hi,
    I have a problem in Discoverer Viewer. I run a workbook, see the results and I click on "Printable Page". I set the page setup options to "Portait" and "100% scale". I preview the workbook in a PDF file and it's ok, I see the results in "Portait" and "100%".
    I close the PDF file and I click again on the "Printable Page". This time, I set the workbook to "Landscape" and "20% scale". I preview the workbook in a PDF file and it's NOT ok, the results are still in "Portait" and "100%". And the date/time in the workbook is the time when I run the workbook the first time. So, it's seems like a browser cache problem. The problem repeats until I clear the brower cache. At that moment, the workbook will take the page setup that I set at this time. However, it will be the same workbook with the same results until I clear the cache once again.
    If I save the PDF file on my Windows Desktop and I overwrite it each time, it's ok.
    Can somebody help me on this??
    Thank you!
    Mathieu

    Hi Michael,
    I'm clearing the browser cache by going in Tools -> Internet Options. In the "General" tab, I click on the "Delete files..." in the "Temporary Internet Files" section" (middle of the window).
    But I don't indicate that Discoverer is saving my printable page changes. I say that the first time I run a workbook, Discoverer saves it (the results) in the "Temporary Internet Files" folder in a PDF file. Each time I run the same workbook after that, Discoverer don't overwrite the file in the "Temporary Internet Files" folder. He takes the PDF file that is already there and show it to me. So, the results are the same even if the data has changed. It does this until I clear the browser cache (it deletes the PDF file in the "Temporary Internet Files" folder).
    Do you understand?
    Regards,
    Mathieu

  • Error with the view of a form

    Hi,
    I have a problem with the view of a form before start a workflow:
    This is the aspect that it has (it shows the colums of the form):
    and this is the aspect of the same action in other sites (the correct way):
    How can I change the aspect of the first form to the second? Why it shows this way with the parameters defined in the workflow?

    Hi Enrique,
    What form did you use?
    Was it a New from or an initiation form?
    How did you design the form?
    Please create a new list with the form, compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Strane Issue with Discoverer Viewer

    Hi All
    I Created a report in doscoverer plus (OracleBI Discoverer 10g (10.1.2.2)). I have a page item LOCATION and in the drop down box i have four locations LOCATION 1,LOCATION 2,LOCATION 3,LOCATION 4. In discoverer plus the page items are working just fine, whenever i select a location from the page item it gives me the report based on my selection. The problem is when i look at the report in Discoverer Viewer and try to select a different location (other than the default which is LOCATION 1), for some reason it doessn't select a different location but just shows the default. Once i logout and log back in into the viewer it works fine again. Can anyone please tell me whats causing this?
    Thanks

    What browser are you using and have you tried a different browser?

  • Login error with report viewer when opening Crystal report with subreport

    Hi
    I have a problem with a login error (database vendor code 18456) when I try to open a crystal report to view it.
    The report uses data from an external payroll database but I'm running it via our Accounts system (it's a convenient front end for users to run the report from). This works fine for another report that doesn't have any subreports. However when I run the Crystal report that has subreports, the report generation process works but when the crystal reports viewer tries to open the report I get the login error. It doesn't seem to be passing the login details for the payroll database down to the subreport.
    I'm using Crystal Reports version 11.0.0.1282. The Accounts system is Technology One. Tech One have provided a report template that has several formulas designed to allow Tech One to play nicely with Crystal. One of these formulas allows me to enter the nickname of the external database that the report needs to use. The external database's connection details are fully specified in the Tech One configuration section (server console). So in this case the report says use database U1 & the server console identifies U1 as being the payroll database, specifies the connection path  & has the username & password required to logon to the payroll database/server.
    The report is running ok & retrieving data, but for some reason the viewer is erroring. If anyone has any ideas for how I can get the login details used to run the main report to flow through to the subreport it would be much appreciated.
    Thanks
    Sue

    I understand your  frustration. We can do a few things. But really, it should be Technology One contacting us. To use an analogy (which you are free to share with Technology One). They built a car and sealed the hood. You bought the car, but he engine does not quite run as it should. You bring the car to the mechanic and all he can do is look at the car as he can not even open the hood.
    In any case, here is what I would do if I could open the hood (e.g.; if I was dealing with Technology One):
    1) Look up database vendor code 18456. This is simply the error our print engine is receiving from the database client and it simply passes it through relatively unhandled. This you should be able to do your self or ask Technology One to tell you what that means.
    2) Break out the subreport and see if it runs on it's own in the application (if this is a permissions issue - which I doubt -  it should come up here too). Unfortunately, this is for Technology One to do...
    3) Run the report (with the subreport) in the CR designer. Does it work there? If this is a win app and it works, we again eliminated permission issues. And we also confirmed that the report is good. Again, Technology One should do this for you.
    BTW.; CR 11.0 is out of support - not sure if you or Technology One are aware of this...
    4) Can the developer duplicate the issue on his development computer?
    Now, there are couple of instances where you say something like; "the report works and gets data, but the viewer errors out":
    +The report is running ok & retrieving data, but for some reason the viewer is erroring.
    However when I run the Crystal report that has subreports, the report generation process works but when the crystal reports viewer tries to open the report I get the login error.  +
    How do you know the report is retrieving data? From the error I would say the report never connects, thus the error / request for a logon...
    So, the short of all of this is; get Technology One to contact us. They can do it over the forums or obtain a phone case here;
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100
    Now, here is a warning. As CR 11.0 is out of support Technology One will have to upgrade to CR 11.5, before that can create a phone case, which for them and you brings up another bunch of issues...
    If you do not get any joy from the support person at you are talking to at Technology One, get him to escalate the issue. They are the ones that should be talking to us...
    Ludek

  • Help with discoverer viewer tables

    Hi
    I have a oracle table which has some blank cells which oracle discoverer shows as null, thats fine although i wish it wouldn't show but i can live with that, the problem is can i exclude the null count when calculating percentages ?
    thanks
    nimesh

    Hi
    You can change how the NULL shows up in your sheets, if you go into Tools, Options, Sheet and at the bottom there is an option Show Null values as.....
    Or on an existing report right click on the table and choose Format Table (or Crosstab) and set the NULL value option in there....
    Can you give us more info on what you mean by excluding nulls from a count....because if it's what i think it is then you can do a case statement.....
    MF

Maybe you are looking for

  • How to use the frameaccess code to convert video frames to jpeg files

    Hello everyone. I am working on a project on video processing, and i need to be able to do image processing on individual video frames. However, to do this, I need to convert the frames to an appropriate format, namely jpeg. It is actually the conver

  • Condition record in pricing

    system is newly installed and we are not able to create condition records for any condition type in the system, be it pricing or tax condition type able to access the condition type, access sequence, tables as well.  only at the time of creating cond

  • Can I use a USB3 device on a IMAC27 from medio2010

    can I use a USB3 device on a IMAC27 from medio2010

  • Which one is the best way to generate an array of large waveform?

    The problem is that I have an array of 4 waveform of 2,8 millon of samples each one and when I put it in the buffer an error say me that there is not sufficient space. My computer is a PII MMX of 350MHz and 384MRAM. I`ll really appreciated that you p

  • One Year Subscription

    Hi, I recently got skype premium, i opted for the 1 year subscription. Now, after 1 month, i've got a message saying my subscription will be canceled cause my credit card is out of date. But i already payed for the whole year, my subscription should