Discoverer 4.1, OLE, Oracle 8i

I've tried the demo - no joy, won't start (not clear how to login to the demo so that's probably a problem, followed the directions but no clue if 'video4' is a user name, password or db or what values should be used for each).
I've picked through the code, pretty straightforward but not sure it has what I want.
What I want -
Start a 3rd party app.
Connect to a Discoverer workbook
Run the query (don't need to modify anything, just run the query).
Pull each line of data into my 3rd party app (didn't see this in the demo code and can't figure out the api description provided).
To keep it simple, assume the 3rd party app is Excel and I want to map each column in the Discoverer worksheet into a column in Excel. How would that be done?
If there is more complete documentation and examples of the OLE methods on-line, please feel free to point me in that direction - I've searched Oracle, Noetix, and googled for 1/2 hour without any luck.
TIA for any assistance.
Doug

Hi,
When users are removed from the system their privileges in EUL4_ACCESS_PRIVS are not removed. However, when the privileges are exported and imported only the privileges of valid users are imported into the EUL. Therefore it could be that the missing privileges relate to users that are no longer on the system. You would have to check in the original EUL4_ACCESS_PRIVS to confirm that.
Rod West

Similar Messages

  • Installing Discoverer with Database Version Oracle 10g Express Edition

    Hello,
    Is it possilbe to install Discoverer with database version Oracle 10g Express Edition? I have Oracle Fusion Middleware 11.1.1.1.0 on my Windows XP machine as well. If so, can someone please provide me a link to the Discoverer download.
    Regards,
    Kelly

    Note that the Personal Edition of the database is 'the most powerful' version, in that it contains all features and options of the Enterprise Edition (expect RAC and Enterprise Manager packs)
    As such, the Personal Edition, at a mere USD$400-500 is one of the most cost effective for-fee products that Oracle has in it's inventory. It is targeted at the developer. And it comes with the complete set of Sample Data, whereas XE has a very limited subset (since it does not support all functionality).
    Express Edition is indeed free, but it is not supported, and can not be patched. OTOH it does have a lighter footprint.
    Again, I am not sure whether Disco 11g is compatible with Express Edition. (It's on my schedule for December ...)

  • Discoverer 3.1 with Oracle 10g

    Hi All,
    I want to use Discoverer 3.1 against Oracle 10.1.0.4 Database and Oracle 10.1.2.0.2 Application Server. This is a temporary solution only, since a client urgently needs to run his Discoverer reports. The operating system of the client machines is Windows 2000 and on the other hand, the Discoverer version they want to put in place is 3.1.18. This version is not designed for WIN2K and above.
    Discoverer 3.1.18 still runs on WIN2K but the company expects to carry out upgrade to Windows XP Professional. Obviously Discoverer 3.1 is not a solution but they want to use it for a short time. My main question in this respect is if Discoverer 3.1.18 could be run against Oracle 10g.

    Hi
    To be honest I have never tried it. My gut instinct is that it won't work but I could be wrong so you would have to try it and see. The unfortunate aspect about all of this is that Discoverer 3 has been long desupported so there is no way you would get any help from Oracle should things go wrong.
    I also have to question your Discoverer release number. If you are on 3.1.18 you are definitely on dodgy ground because this is not Y2K compliant. The release you should be on is 3.1.36. The following posting from my blog lists all of the Discoverer releases along with their correct patch numbers:
    http://learndiscoverer.blogspot.com/2006/04/april-2006-oracle-discoverer-patch.html
    You may find it useful. If you need to get hold of the 3.1.36 patch you could try raising a SR but I wouldn't guarantee that you will succeed. What's wrong with using the latest 10.1.2.0.2? It has Desktop and Administrator just the same and will work on the 10g database no problem.
    I hope this helps
    Regards
    Michael

  • OLE : Oracle 9i / lotus Notes

    Hello
    (Text translated of French into English )
    We arrived at the limits of our internal comptences and seek solutions for advanced:
    Have you got any solution to me... or to provide me contact which can help us with OLE Oracle/notes.
    We have a appli developed under Forms d' Oracle with bouttons
    The appli in executed on 9iAS and the accesses of the customer is done in Java of the navigator Web . (applet "oracleJinitiator")
    We have to update oracle (8 - > 9i) and since we let us not arrive at reparametrer 4 buttons whose function is to interact with Lotus That more fontionne neither on station which has the customer lotus notes 7.0.2 Fr nor with 6.5.4fr (waiter domino 7.0.2 Fr).
    We use 4 functions which are as follows
    Sending of an email with [email protected]
    Sending of email to the contact selectionné
    Creation of an appointment in lotus
    Addition interloccutor in address book lotus
    Here is the code
    Sending of an email with [email protected]
    Lotus opens then nothing
    Work=Create_Obj('Notes.NotesUIWorkspace')
    Invoke(Work,'OpenDatabase','domino',:global.ole_mail_lotus);
    doc = Invoke_Obj(Work,'ComposeDocument','', '', 'Memo');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','EnterSendTo','[email protected] ');
    Invoke(doc,'FieldSetText','Subject','Demande de Modif de :_ ');
    Invoke(doc,'FieldAppendText','Subject',:SOCIETE.CSOSIRET);
    Invoke(doc,'FieldAppendText','Subject','_-_ ');
    Invoke(doc,'FieldAppendText','Subject',:SOCIETE.CSOLIBEL);
    Invoke(doc,'FieldSetText','body','Responsable Local : Civilité ');
    Invoke(doc,'FieldAppendText','body','/ Nom / Prénom ');
    Invoke(doc,'FieldAppendText','body','/ Date de naissance OBLIGATOIRES');
    Invoke(doc,'FieldAppendText','body','/---/ ARE ');
    Release_obj;
    Sending of email to the contact selectionné
    Lotus opens then nothing
    Code
    Work = Create_Obj('Notes.NotesUIWorkspace');
    Invoke(Work,'OpenDatabase','domino',:global.ole_mail_lotus);
    doc = Invoke_Obj(Work,'ComposeDocument','', '', 'Memo');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','Body',:global.ole_corps);
    Invoke(doc,'FieldSetText','EnterSendTo',:global.ole_email);
    Invoke(doc,'FieldSetText','Subject',:global.ole_sujet);
    Release_Obj;
    Addition interloccutor in address book lotus
    error message
    Code
    Work = Create_Obj('Notes.NotesUIWorkspace');
    Invoke(Work,'OpenDatabase','','names.nsf');
    doc = Invoke_Obj(Work,'ComposeDocument','', '', 'Contact');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','Title',:global.ole_titre);
    Invoke(doc,'FieldSetText', 'LastName',:global.ole_nom);
    --Invoke(doc,'FieldSetText', 'LastName',:PERSONN.CITNOMPE);
    Invoke(doc,'FieldSetText', 'FirstName',:global.ole_prenom);
    Invoke(doc,'FieldSetText', 'OfficePhoneNumber',:global.ole_Bur_Tel);
    Invoke(doc,'FieldSetText', 'OfficeFaxPhoneNumber',:global.ole_Bur_Fax);
    Invoke(doc,'FieldSetText', 'MailAddress',:global.ole_email);
    Invoke(doc,'FieldSetText', 'JobTitle',:global.ole_fonction);
    Invoke(doc,'FieldSetText', 'CompanyName',:global.ole_societe);
    Invoke(doc,'FieldSetText', 'PhoneNumber',:global.ole_pers_Tel);
    Invoke(doc,'FieldSetText', 'HomeFaxPhoneNumber',:global.ole_pers_Fax);
    Invoke(doc,'FieldSetText', 'OfficeZip',:global.ole_bur_CP);
    Invoke(doc,'FieldSetText', 'OfficeStreetAddress',:global.ole_Bur_Rue);
    Invoke(doc,'FieldSetText', 'OfficeCity',:global.ole_Bur_Ville);
    Invoke(doc,'FieldSetText', 'OfficeCountry',:global.ole_Bur_Pays);
    Invoke(doc,'FieldSetText', 'Zip',:global.ole_bur_CP);
    Invoke(doc,'FieldSetText', 'StreetAddress',:global.ole_Pers_Rue);
    Invoke(doc,'FieldSetText', 'City',:global.ole_Pers_Ville);
    Invoke(doc,'FieldSetText', 'Country',:global.ole_Pers_Pays);
    Release_Obj;
    Creation of an appointment in lotus
    Lotus opens then nothing
    Code
    Work=Create_Obj('Notes.NotesUIWorkspace')
    Invoke(Work,'OpenDatabase','domino',:global.ole_mail_lotus);
    doc=Invoke_Obj(Work,'ComposeDocument','','','Appointment');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','StartDate',:global.ole_Date_Debut);
    Invoke(doc,'FieldSetText','StartTime',:global.ole_Heure_Debut);
    Invoke(doc,'FieldSetText','EndDate',:global.ole_Date_Fin);
    Invoke(doc,'FieldSetText','EndTime',:global.ole_Heure_Fin);
    Invoke(doc,'FieldSetText','AppointmentType','Rendez-vous');
    Invoke(doc,'InsertText','Subject',:global.ole_sujet);
    Invoke(doc,'InsertText','Subject','-');
    Invoke(doc,'InsertText','Subject',:global.ole_nom_int);
    Invoke(doc,'FieldSetText','body',:FICHE_ACTION;CTXLIBEL);
    Invoke(doc,'FieldSetText','body',:global.ole_descr);
    Invoke(doc,'FieldAppendText','body','/ TEL :');
    Invoke(doc,'FieldAppendText','body',:global.ole_tel_int);
    Invoke(doc,'FieldAppendText','body','/ EMAIL :');
    Invoke(doc,'FieldAppendText','body',:global.ole_email_int);
    Invoke(doc,'FieldAppendText','body','/ ');
    Invoke(doc,'FieldAppendText','body',:global.ole_categorie);
    Invoke(doc,'FieldAppendText','body','/ ');
    Invoke(doc,'FieldAppendText','body',:global.ole_preoc);
    -- wait('Mise à jour','Cliquez sur OK pour mettre à jour');
    -- :global.ole_Heure_Debut=Invoke_Char(doc,'FieldGetText','StartTime');
    -- :global.ole_Date_Debut=Invoke_Char(doc,'FieldGetText','StartDate');
    -- :global.ole_Date_Fin=Invoke_Char(doc,'FieldGetText','EndDate');
    -- :global.ole_Heure_Fin=Invoke_Char(doc,'FieldGetText','EndTime');
    Release_obj;
    Thank you by advance

    Check whether these will help.
    JDBC connectivity with Oracle in Domino-Part I
    JDBC connectivity with Oracle in Domino-Part II
    JDBC connectivity with Oracle in Domino-Part III

  • Discoverer 3.1 and Oracle 8i

    Hello.
    Excuse me for my off topic question. Is it possible use Discoverer 3.1 and Oracle 8i?
    Thanks for your answers.
    J. Fikker

    Yes, I am running on my laptop.
    Regards,
    Aydin.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by jarda:
    Hello.
    Excuse me for my off topic question. Is it possible use Discoverer 3.1 and Oracle 8i?
    Thanks for your answers.
    J. Fikker<HR></BLOCKQUOTE>
    null

  • Does Discoverer 4 work with Oracle 8.1.6?

    I have a disk for Installing Oracle discoverer 4.1.37 which I need to work with Orcale 8.1.6. When installing I am not permitted to use my Ora81 home as this is already been used by Oracle 8.1.6 production. Does this mean that I need Oracle 9i to use discoverer 4? Is there a version of discoverer available that works over 8.1.6.

    As far as I know, Dirk-Jan is correct. Discoverer uses the 'old' Oracle home structure, where 8i uses the new 'multiple home' structure. As far as I know, you will probably need to create at least an empty old-style home first, then install the database if you are going to install any products that require the old home, because by design it must be installed first. I think it is probably possible to mess around with the registry entries and switch which one it thinks was installed first, but I normally don't like playing around inside the registry that much. If you have another server, you could install the Discoverer server there, or use the workstation version. It works fine with 8.1.6 and 8.1.7.
    For that reason, we almost always install a 'stub' old home, even if it just contains an old installer entry, before we install things with new homes, just in case we need to install something that needs it.
    If Oracle has a more intelligent way of working that out, I wish somebody would post something, because it really is annoying sometimes.
    Ron

  • Discoverer 3i through ole automation

    Do you know,
    where to find information about using ole automation with Discoverer 3i.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by jr vasquez ([email protected]):
    Also, is there a method of bypassing the authentication and passing arguments into Discoverer rather than having to login? If I am maintaining a userlist in another application can I not use that authentication method and pass that into Discoverer?<HR></BLOCKQUOTE>
    For the Client server application, You can bypass login by passing parameters to the application. This is documented in the Discoverer User's Guide, Under Advanced Features, Using Command Line Options.
    Discoverer Viewer and Discoverer Plus (java) also permit this through the urls used to launch the application. This is also documented.
    Documentation for Discoverer OLE Automation may be found via Oracle Metalink. Type in 'Discoverer, OLE' in the search window and a technical bulletin, "Programmatic Control of Discoverer 3.1", will be returned.

  • DISCOVERER REPORT ISSUE IN Oracle 9iAS

    Hi All,
    I am trying to export file on Oracle 9iAS using discoverer using excel format, But not able to export in proper format. Can anyone help me for this please
    Regards
    Kumar

    Please reply for this

  • Oracle Discoverer 4i (portal db - oracle 8i) connectivity issue with 11g database

    Hi All
    We have oracle discoverer 4i with portal db (oracle 8i).
    We connect to the external databases using db links in the portal db and the reports will use the db link to retrieve the data from views in the external databases.
    External databases we were connecting is oracle 10g version and now we have upgraded these databases to 11g version.
    Now i have a created a new db link to this 11g database and i have created a new EUL in portal to connect to this 11g database.
    But when i try to create a report using the discoverer from this new EUL after login to the discoverer we get a "cannot connect to database" error.
    We have all the necesscary privilege to the user and the new database link works perfectly fine. (when we try to query directly using SQL plus from portal database using this db link the query works perfectly fine).
    Im not sure if this is a compatibility issue in connecting from oracle disc 4i to a 11g database.
    Can any one advise if this is the case and if there is any workaround for this?
    Regards,
    Raj

    Are you saying you are having issues with a database link between 8i and 11g (pl post exact versions to 4 digits) ? If so, it should be expected as database links between these two versions are not supported. Is there a reason you cannot upgrade the portal database to at least 10gR2 ?
    See MOS Doc 207303.1
    HTH
    Srini

  • Installation of Oracle Discoverer for PeopleSoft and Oracle apps(11.5.10)

    Hello Gurus,
    I hope I am in the right forum. I have been assigned to install Oracle Discoverer for Oracle ERP (11.5.10). We currently have a Oracle Discoverer environment for Peoplesoft. My questions are follows.
    1. Can I use the existing Oracle Discoverer which is used to get PeopleSoft data for Oracle Applications (11.5.10) ?? This way I avoid installing another copy of Discoverer. In Future, if we could use the existing technology for other Databases.
    2. If I go in for a new install of Oracle Discoverer, what is that I need to install ? I am guessing, there should be
    1. Desktop application on the client
    2. Do I need to install anything on the server ?
    3. I will have a Oracle Discoverer database
    I guess 1. (Desktop application) would be installed on all desktops ? Is there a web based thingy ?? For 2 and 3 I would require the DBA's to help me out.
    Would anyone have a high level diagram of the things that go in for installation ? I would really appreciate if you could send it to kiranramachandra at yahoo dot com.
    Thanks folks
    Kiran

    Hi,
    1. No, you don't need to reinstall Discoverer, you can just connect to the new database provided you have updated the TNSNames.ora file. However, before you can connect with Discoverer Desktop you will need to use Discoverer Admin to create a new Apps mode EUL in the Applications Database.
    2. You will need a client installation of Discoverer (Admin and Desktop). If you want to use the web based Discoverer Plus and Viewer tools you will need to a Oracle Application Server installation. If you are installing Discoverer 10g then you should install the Oracle Business Intelligence Standard Edition. But depending on your version and configuration you may need to install other tools.
    Rod West

  • Oracle Discoverer 4.1 to Oracle Discoverer11g  EUL migration steps

    Hi
    WE SUCCESSFULLY upgraded Discoverer 3.1 to 4.1 EUL against Oracle 8i DB.
    Also  exported all EUL4 objects and imported the same to 11gr2 Db.
    But when we try to upgrade from Oracle BI 11g Discoverer Admin by connecting against the imported EUL4 schema in 11g
    DB we get the default message that 3.1 has to be upgraded to 4.1 using Discoverer 4i and then use this release to upgrade 4i EUL.
    Not sure what I am doing wrong here when the 3.1 to 4.1 is already completed and 4.1 EUL also already imported in 11g database.
    Am I missing any step here.
    Kindly advise on this issue.
    Thanks
    Nirmal.

    Discoverer 10g uses EUL5-tables, so after an upgrade you'll have 2 EUL's, one with EUL4 and one with EUL5-tables.Users who'll have the Discoverer 4i desktop will connect to the old EUL, while the Discoverer 10g desktop will connect to the new EUL. So, it's best to remove (or disable) your old EUL, otherwise you'll have 2 EUL's to support.

  • SUPER URGENT - I can't connect Discoverer with my own Oracle Data Base

    Please sobebody help me!
    I've installed Oracle9i Personal, but I can't connect to Discoverer with it.
    When I put the "username" , "password" and the "name of the bank" the system
    returns the message:
    'I was not able define the name of the service'
    What must I do???
    How can I configure the 'Oracle 9i Personal' to connect to Discoverer 4?

    I have highlighted your error. You are trying to invoke a method over a null object.
    Hi,
    Is that something wrong with my db connection? Why I
    can't insert the data to the db. By the way, I using
    Tomcat 3.1, oracle enterprise 8.1.7 and JDK1.3
    <html>
    <head>
    <basefont face="Arial">
    <%@ page language="java" import="java.sql.*" %>
    <%!
    //define variable
    String UId;
    String FName;
    String LName;
    String city;
    String phone;
    String conn;
    %>
    <table border="2" cellspacing="2" cellpadding="5">
    <tr>
    <td><b>Owener</b></td>
    <td><b>First Name</b></td>
    <td><b>Last Name</b></td>
    </tr>
    <%
    Connection connection = null;
    Statement statement = null;
    ResultSet results = null;
    Statement SQLStatement =
    connection.createStatement();
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url =
    "jdbc:oracle:oci8@administrator:1521:mylogo";
    connection = DriverManager.getConnection(url,
    "sysman", "manager");
    statement = connection.createStatement();
    String Query = "SELECT * FROM USER";
    ResultSet SQLResult =
    SQLStatement.executeQuery(Query);
    while(SQLResult.next())
    UId = SQLResult.getString("LNAME");
    FName = SQLResult.getString("FNAME");
    LName = SQLResult.getString("DEPT");
    city = SQLResult.getString("TITLE");
    phone = SQLResult.getString("TEL");
    out.println("<tr><td>" + UId + "</td></td>" + FName
    me + "</td><td>" + LName
    +"</td><td>" + city + "</td><td>" + phone +"
    +" </td>");
    %>
    <td> <a
    a href="delete.jsp?uid=<%=UId%>">delete</a></td>
    <td> <a
    a href="editform.jsp?uid=<%=UId%>">edit</a></td>
    <td> <a href="insert.htm">Insert</a></td>
    <tr>
    <%
    //close connection
    SQLResult.close();
    SQLStatement.close();
    connection.close();
    %>
    </table>
    </body>
    </html>
    Any help is appreciated !

  • Very very urgent Discoverer reports for non oracle applications

    Hi,
    My client is using discoverer 10g with R12.He is using different non oracle applications like BRM Application (database is oracle only) for that they wants to develop discoverer reports.It is possible to integrate with non oracle applications with discoverer.
    Can you please suggest me.It is very very urgent.
    Thanks & Regards.

    Hi
    You're really not supposed to manage a non-Apps mode EUL and an Apps mode data within the same URL. Having said that, I have a hunch you just might be able to do it and there are 2 ways. You can either make the data available to user who login using E-Business Suite credentials or you can make it available to users who have database credentials. The first one is straightforward and you do it just like any other data. Let me give you some hints regarding the second method.
    First of all I ahve not personally tried this and you may find that because Discoverer was initially set up in Apps mode that somewhere down the line it will make the suers connect this way. However, the following is worth a try.
    I would a new schema in the Oracle E-Business database to manage the link to BRM and create a database link from this user to a user in the BRM database. You will also need to create user accounts within the database for anyone who needs to login and run BRM reports.
    Next, I would create views in this new schema pointing at data across the BRM link, thus allowing Discoverer to think these are local objects.
    In Discoverer Administrator, you would need to log in to Discoverer using the owner of the EUL - NOT using SYSADMIN or any of the other E-Business Suite accounts. You should log in with the Oracle Applications checkbox unchecked. You can now create new business areas on the BRM data. You should also be able to assign users to Discoverer privileges and users to business areas.
    Using the same URL you would have Apps users connect using the E-Business Suite item on the drop-down for logging in and you would have BPM users choose the Business Intelligence Discoverer item.
    Let me know how you get on
    Michael

  • Discoverer Desktop 11 and Oracle db 9i

    Will Discoverer Desktop 11 run off Oracle db 9i?
    I have copied tnsnames.ora file from 9i directory to 11, cannot connect (get ORA-12154)
    Thank you in advance.

    Hi,
    I am not aware of any issues that would cause a TNS connection error. Check that the TNS details are correct for the new database using TNSping or SQLplus.
    Rod West

  • Calling discoverer report from Oracle report

    Hi
    I need to call a discoverer report from an Oracle report.
    Could someone pls let me know how you did it?
    Thanks.

    If the Oracle Discoverer Report is accessible by an URL then yes. It will be similar to calling Oracle Reports. See http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

Maybe you are looking for