Access oracle Discoverer report

Hi,
has anyone tried accessing an oracle discoverer report through web dynpro?  Any info will be greatly appreciated!
Leah

Yogini is correct, but the solution provided will remove drill capability for all users under all circumstances. This is a "shortcoming" of Disco. If you set up a hierarchy for the users to use for drilling, the users must have the drill out privilege. This has the additional effect of adding the "Drill to related..." feature to most (and I believe all) columns.

Similar Messages

  • Calling Oracle Discoverer Report from Apex

    How to call Oracle Discoverer Report from apex application?
    Thanks!

    The report is on a different data base ... need to create a process to get the data into the view behind the report and then materialized view in Apex etc .Then recreate the same report in Apex. But I am trying use the disc report url to invoke the report directly from apex.
    Any suggestions or thoughts are greatly aprreciated.

  • Oracle Discoverer Reports

    hi All,
    As i'm new to develop Oracle Discoverer Reports.Can any help me in getting me some documents to prepare.So that will be helpfull for me.
    Regards
    SP.

    Try the Reports Forum, you might get more help there.

  • Installing Oracle Discoverer Reports 4.1 in Windows Vista

    Hi Guys............Greetings...
    Can we install Oracle Discoverer Reports 4.1 in Windows Vista?
    If not any patch available to install the same in WInsows VISTA?
    Thanks in advance.
    Dave Suresh

    Go to metalink
    Click on the Certify tab
    Click on the second link "View certification by Platform"
    If it isn't there then it is not certified.
    That is the answer to the question you asked.
    My advice is still that you get a decent operating system: Certified or not.

  • How to find which user has access to Discoverer Reports?

    I need to find users having access to Discovered reports using a script. How can I do that?

    Hi,
    You need to give more details...
    Are you using oracle applications? are the users database users?
    If you use oracle application you can use the following:
    SELECT DISTINCT Disco_Docs.Doc_Name "Discoverer Workbook"
    ,Trunc(Disco_Docs.Doc_Created_Date) "Workbook Create Date"
    ,CASE
    WHEN Instr(Disco_Docs.Doc_Created_By
    ,'#') = 0 THEN
    Disco_Docs.Doc_Created_By
    WHEN Instr(Disco_Docs.Doc_Created_By
    ,'#') > 0
    AND Instr(Disco_Docs.Doc_Created_By
    ,2) = 0 THEN
    (SELECT Fu.User_Name
    FROM Fnd_User Fu
    WHERE Fu.User_Id = Substr(Disco_Docs.Doc_Created_By
    ,2
    ,5))
    ELSE
    NULL
    END "Workbook Owner/Creator"
    ,Disco_Users.Eu_Username
    ,CASE
    WHEN Instr(Disco_Users.Eu_Username
    ,'#') = 0 THEN
    Disco_Users.Eu_Username
    WHEN Instr(Disco_Users.Eu_Username
    ,'#') > 0
    AND Instr(Disco_Users.Eu_Username
    ,2) = 0 THEN
    (SELECT Fu.User_Name
    FROM Fnd_User Fu
    WHERE Fu.User_Id = Substr(Disco_Users.Eu_Username
    ,2
    ,5))
    ELSE
    (SELECT Resp.Responsibility_Name
    FROM Fnd_Responsibility_Tl Resp
    WHERE Resp.Responsibility_Id =
    Substr(Disco_Users.Eu_Username
    ,2
    ,5))
    END AS "Shared Name / Responsibility"
    FROM Eul_Us.Eul5_Documents Disco_Docs
    ,Eul_Us.Eul5_Access_Privs Disco_Shares
    ,Eul_Us.Eul5_Eul_Users Disco_Users
    WHERE Disco_Docs.Doc_Id = Disco_Shares.Gd_Doc_Id(+) AND
    Disco_Users.Eu_Username(+) NOT IN ('EUL5', 'PUBLIC') AND
    Disco_Users.Eu_Id(+) = Disco_Shares.Ap_Eu_Id
    Tamir

  • Printing issue in Oracle discoverer report

    Hi Experts,
    As usual many thanks for all your support in advance.
    We are facing an issue in printing the discoverer report.
    When we ran the discoverer report, we are getting the output, in a perfect way.
    But when we try to print the report, the report is printing with junk characters.
    We tried printing this report in multiple printers with multiple log in but of no luck.
    could you please help me on this
    Thanks in advnace.
    Naz

    Andreas Weiden You use thisI'm pretty sure i never used "Oracle Reports Remote Printing Utility 1.3.4" ;)
    In "WHEN-TIMER-EXPRIED"Why do you have to use a timer for this. I don't think its necessary.
    WEB.SHOW_DOCUMENT('c:\temp\'||:GLOBAL.PrintOutPut,'_blank') ;Web.SHOW_DOCUMENT shows a WEB-url and c:\temp\ definitely is none.
    I am trying to use "Oracle Reports Remote Printing Utility 1.3.4 (ORARRP)"And where do you use this? I don't find any call in your code..

  • Oracle Discoverer report shows drilldown icon in Web version

    Hi ,
    I am trying to create a new CROSS TAB Discoverer report. I made all my development done using the Discoverer desktop edition and is fine. When I saved in the database and showed the same report the User, in the Web Version, the report shows ' >' icon in all the cross tab headings and when the cursor is moved there, it gives an option to Drill down.
    We have 3 fields which are selected but not shown in the report. It shows the drill down to those 3 fields.
    My questions is:
    1. I should not allow users to drill down. It should not show that option.
    How to disable that option in the Web Version.
    Any help in this regard is highly appreciated.
    Thanks & Regards,
    Kiran Kesari

    Yogini is correct, but the solution provided will remove drill capability for all users under all circumstances. This is a "shortcoming" of Disco. If you set up a hierarchy for the users to use for drilling, the users must have the drill out privilege. This has the additional effect of adding the "Drill to related..." feature to most (and I believe all) columns.

  • Oracle Discoverer report pulls incorrect result when scheduled.

    Recently the database was migrated to 10.1.2 RAC from 9.2.0.6, so the discoverer EUL is now resides on new database.
    after migration the report which pulls correct results when run interactively is pulling incorrect result when scheduled in Discoverer.
    This report used sysdate and aggregate functions, i had ran the same report simultaneously( Directly in Discoverer Desktop/Plus and scheduled in discoverer), but the data retrieved in both case is not matching.
    here is the query. any help is appreciated.
    SELECT /*+ FIRST_ROWS */ A.SITE_ID as E175108,B."SYSTEM DESCRIPTION" as System_Prefix,
    B."SYSTEM PREFIX" as System_Description,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) < 0 THEN 1 ELSE TO_NUMBER(NULL) END) as Less_than_0_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) > 121 THEN 1 ELSE TO_NUMBER(NULL) END) as 0_to_14 Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),3,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 14_to_30_Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),2,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 31_to_60_Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),1,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 61_to_90_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) BETWEEN 15 AND 30 THEN 1 ELSE TO_NUMBER(NULL) END) as 91_to_120_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) BETWEEN 0 AND 14 THEN 1 ELSE TO_NUMBER(NULL) END) as 120_Days_Plus,
    COUNT(TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE)) as Total
    FROM PSTAGE.ALL_EQUIPMENT A,
    ( SELECT A.SITE "SYSTEM PREFIX", A.DESCRIPTION "SYSTEM DESCRIPTION", A.SITE_ID, B.SITE_DESCRIPTION, A.G2B_ID
    FROM SITE_LIST A, ALL_CF_SITE_CONTROL B
    WHERE A.SITE_ID = B.SITE_ID
    ORDER BY 1, 3
    ) B
    WHERE ( (B.SITE_ID = A.SITE_ID))
    AND (A.EQUIPMENT_STATUS_CODE IN ('T','7'))
    GROUP BY A.SITE_ID,B."SYSTEM DESCRIPTION",B."SYSTEM PREFIX"
    ORDER BY B."SYSTEM DESCRIPTION" ASC ;
    Thanks!

    Hi sunil,
    Rod is referencing the NLS parameters i.e.
    Can you please let me know which NLS parameters you are referring toNLS parameters in this scenerio may be the date and language for that session.Do check out
    SELECT * from NLS_SESSION_PARAMETERS
    how i can check if there any differences in the NLS parameters when report is scheduled or run interactivelyI think you should run the trace file.Iam not sure about it.
    It would be system_context.
    Hope it helps you.
    Kranthi.

  • How to restrict/allow users to access oracle forms/reports through SSO

    Dear All,
    I am new to oracle application server and need to know how can we manage the access rights for oracle forms using OID/SSO.

    Anyone can answer.

  • Oracle Discoverer Report issue

    One of the report in our setup takes 3 hours on specific day on week , any other day it runs normal.
    from where to start to diagnose that issue ?

    Please reply for this

  • Accessing Discoverer Reports from Oracle Apps

    Hi all,
    Requirement: Accessing Discoverer Reports from Oracle Apps
    Discoverer: 11g
    Oracle Apps: 12i
    When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option that can directly connect to the viewer without any intermission. Please its urgent requirement.
    ThanQ,
    ABR

    Hi Arun,
    When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option that can directly connect to the viewer without any intermission. Please its urgent requirement.Pl refer section *6.4. Set Applications profile options in Oracle E-Business Suite* from MOS tech note
    *Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 [ID 1074326.1]* and make sure that all profile options are set to a valid value.
    thanks,
    X A H E E R

  • An Extra Window opens when accessing discoverer reports.

    Hi All,
    I have upgraded the jinit version from 1.3.1.8 to 1.3.1.9 in oracle discoverer (9.0.2.0.1). But after upgradation when try to access the forms URL and then report which is club with oracle discoverer reports every time an extra IE Window opens with public links , I mean whenevr try to access new report an extra IE Window opens
    do anyone have idea how to resolve this?
    Regards
    Kumar

    got the answer , tnx

  • 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/

  • How to link  discoverer report to E-Business  Suite

    Good day
    I followed instructions as stipulated in document number doc 278095.1 and doc 433397.1.
    However i dont understand the link between the two.Actual im still new in oracle.
    If i understand correctly doc 433397.1 is used to register the discoverer workbook to OracleOasis.RunDiscoverer
    package and i created the function using this parameter
    'workbook=XX_LEAVE_LIABILITY&PARAMFORM=HTML' ....I do not know if is necessary to put the inverted commas.
    and assign it to a certain menu .
    I have created another function following 278095.1 instructions but i do not know how does the two functions link.
    Because for doc 433397.1. the Properties tab TYPE is 'SSWA plsql function opens in new window (Kiosk Mode)
    whereas for doc 278095.1 is ''SSWA plsql function'
    and the form parameter for doc 278095.1 is ''workbook=XX_LEAVE_LIABILITY&PARAMETERS=sheet~1*' .
    The function name is there assigned to a responsibility but i can not access the discoverer report it retuns message "Unable to authenticate session'

    Hi,
    The ICX parameters can be updated by going to the System Profile form on the System Administor menu.
    Basically, the way the OracleOasis.RunDiscoverer function works is that it checks the ICX profiles from the user and builds a URL to start up Discoverer. It then adds to the end of the URL the workbook details from the form function so that the URL opens the workbook and supplies the parameters to the workbook.
    So if the ICX: Discoverer Use Viewer profile is set to Yes then the function takes the URL in ICX: Discoverer Viewer Launcher. Hence you need to check that this URL (which should look like http://<HTTP Server>:<Port>/discoverer/viewer) actually launches Discoverer. The ?Connect=[APPS_SECURE] needs to be added to this URL so that Discoverer is launched without the need to reenter username/password.
    It then concatenates the values in the ICX: Discoverer End User Layer and ICX: Discoverer End User Layer Language Override e.g. EUL_US to create the Discoverer EUL owner. The EUL parameter is then added to the URL so that Discoverer is started using this EUL.
    Finally, the value in the parameter field in the form function is used to add the worksheet selection and if necessary worksheet parameter selection parameters onto the URL.
    Rod West

  • Discoverer Reporting Solution for Multiple Databases

    I have to build oracle discoverer reports (single point of access) for four different applications. Each application is having separate databases. So whether i should create separate EULs for each applications (in respective databases) or Should i create a single EUL in any one of the databases and then use db links to connect rermaining databases (for reports from the other applications).
    Can u suggest me which method will work good if you see the performace?. I need a dingle point of access for all the discoverer reports.
    The worksheets need to be deployed with oracle portal for access of reports in a single click. Is there any way to pre configure the db credentila for each worksheet...?

    Hi
    My replies below make the assumption that you are not allowed to do any ETL and therefore the data from each database has to be pulled as is. If you do have ETL capability the situation changes dramatically.
    In addition to what Sharon has said the cost based optimiizer will have a difficult job rewriting your query efficiently if you use database links, and if you attempt to have queries with some tables from one database and some from another the optimizer will not work at all. I mean. How could it? How could the optimzier in database A know anything about the statistics in databases B, C or D? Wherever the EUL is, that is where the driving optimizer will be so choose wisely obi-wan :-)
    For me it's more about user needs than IT needs. If the business has a need to combine data from multiple databases then having a single EUL with database links would be a necessity. However, if they really are disparate systems with nothing in common such as say having Peoplesoft HR in one and E-Busines Suite Inventory in another with perhaps an in-house tracking system in another then I would look at having separate EULs, one in each.
    Having one EUL across non-related systems means you have to mix users and roles and can be hard to manage. It actually becomes messy when just two databases are involved never mind four. So even though you might think it is more difficult to maintain 4 EULs, if the objects really are different and you have differing roles and usernames it actually will probably be simpler. They will be simpler to backup, simpler for exporting and importing and it will be faster for Discoverer to maintain workbooks as there will be fewer of them. Plus your system will have access to its local optimzier thereby ensuring the SQL is efficient.
    If you are going to use one EUL you need to start out on a sound foundation. This means using libraries to control access too business areas and workbooks. You'll need to adopt some simple naming standards to keep things separate and manageable. I wrote a paper about libraries a few years ago and it is available free of change here on my website: http://ascbi.com/downloads.htm. The paper is called Discoverer Libraries - a Concept.
    Best wiishes
    Michael

Maybe you are looking for

  • Open as Project question

    Hello, When I have a Multitrack project open, and control click "Select all occurrences of..." of a clip, then control click Open as Project, will the changes I make in the waveform editor affect all occurences that were selected? If not, is there wa

  • How to bind the value of slider from C# code in windows phone 8.1..?

    Hi, I want to bind a custom seek bar to the position of media element. I think from XAML we can achieve it by       Value="{Binding ElementName=mediaElement, Path=Position, Mode=TwoWay, Converter={StaticResource FormatConverter}}" where FormatConvert

  • PO value should not increase from PR value

    Hi I hv a PR for an matl with the value specified in valuation tab at PR level. Am creating PO with respect to the above PR and if i exceed the PR value in the PO.. I need a warning or error at this time. How this can be done? Vijay

  • N70 Voice Commands

    How can i teach my mobile phone for voice commands ? In every contact there is a voice command defaultly but they are not im my local language. I will change them but i cant. What else can i do or how can i teach my phone ??? Serhan Altug

  • Computer has stopped syncing

    I work in an environment with 600+ users who sync to our server with portable home directories [there are two servers, half sync to one, and half sync to the other]. The problem exists on both servers. It seems that most computers continue to sync pr