Regarding The Discover Reports

Hi,
CAn any body can get me the setup file for downloading the Discover reports
Thank you

What setup file
What Discoverer reports
In what version?
If you want to download Discoverer go to otn.oracle.com and click on "Downloads" then "More."
If something else describe it in detail.

Similar Messages

  • Query regarding the ADDM Report

    Hi All,
    My DB performance was quite slow during the last weekend because we had a major data load job and dbms_stats.gather_schema_stats jobs running simultaneously. So, we got an ADDM report generated for these 2 days and from that i could extract 2 things:
    1. The performance was slow because the dbms_stats.gather_schema_stats job was running simultaneoulsy on it.
    2. I could see that some of the SELECT queries on the tables in the schema got executed 145445335, 35, 30 and 20 times repeatedly on the DB. Now this leaves me shocked. Can anyone possibly explain the reason behind it? Was it because a gather_schema_stats was also running on the DB? But how would a select be affected by it? Would it be because it had a exclusive locks on those DB objects during the time it was running?
    Kindly suggest.
    Thanks in advance.

    Hi,
    Thanks for your response.
    No, i cannot see any of the terms like library cache locks and library cache pins with those SQL statements. The only things is see is:
    RECOMMENDATION 1: SQL Tuning, 15% benefit (28820 seconds)
    ACTION: Run SQL Tuning Advisor on the SQL statement with SQL_ID
    "725bgkkhqs73v".
    RELEVANT OBJECT: SQL statement with SQL_ID 725bgkkhqs73v and
    PLAN_HASH 2688602638
    SELECT column1 from table1;
    ACTION: Investigate the SQL statement with SQL_ID "725bgkkhqs73v" for
    possible performance improvements.
    RELEVANT OBJECT: SQL statement with SQL_ID 725bgkkhqs73v and
    PLAN_HASH 2688602638
    RATIONALE: SQL statement with SQL_ID "725bgkkhqs73v" was executed 32
    times and had an average elapsed time of 900 seconds.
    Also, my DB is 10.2.0.3.0 and OS is HP-UNX B.11.23.

  • Querry regarding the classical report

    Hi Experts,
    I am developing a classical report for G/L account statement.
    I hv kept Document No as a selection criteria.
    In one particular document, der r three entries.....
    one of G/L, Vendor and Customer.
    Format is as follows....
    Document No   Fiscal yr   Account No   Short Text   Debit amt   Credit Amt
    My query is I want to display the vendor code n customer code in the Account No. column wen evr the entry is 4 vendor n customer respectively.
    For the G/L account it is displaying the right value......
    but 4 vendor n customer it is displaying reconsilation acc. no.
    Instead of which i hv to display the vendor code n customer code.
    Plzzz help.....with the source code

    try this:
    use field hkont as "help-field":
    case bseg-koart.
    when 'K'.
      move bseg-lifnr to hkont.
    when 'D'.
      move bseg-kunnr to hkont.
    when 'S'.
    *do nothingg
    endcase.
    hope that helps
    Message was edited by:
            Andreas Mann

  • What is the Program Reporting in the Project template structure?!

    Dear All,
    I have a question regarding the program reporting that in the Project Structure what it's used for. In addition i have a question about the two check-boxes under the program reporting what it's used for also:-
    a) Setup Project as a program.
    b)Allow linked project to belong to multiple program.
    Thanks in advance.

    Here's a quick overview on Program reporting:
    A program is a collection of projects linked in a hierarchical fashion. The Oracle Projects program management functionality enables you to create a program by linking multiple
    projects (and programs) to form a program hierarchy.
    Programs enable you to view and manage workplan and financial information for a group of projects. This capability provides you with benefits that are not available when
    you manage each project individually. With programs, you can specify how multiple projects are interrelated within a program and review interrelated project information
    as a whole. You can track and report on rolled-up planned, actual, and forecasted effort, cost, and revenue, as well as progress and schedule information for all projects in the
    program hierarchy.
    Therefore, as a program manager, you have a strategic focus on the overall program, rather than a tactical project-centric focus.
    The linking of projects within a program follows a top-down approach. If you have the appropriate security privileges, then you can navigate to and drill down into the individual linked projects within the program hierarchy.
    To enable program reporting you have to select the 'Setup Project as a Program' button on your project. Also you can allow one project to be part of one or many programs, so the second check box "Allow linked project to belong to multiple program" controls that feature.
    Dean

  • Regarding the report for vendor stock

    Hello all,
    This is regarding the Subcontracting scenario. We have requirement of transferring the stock of material to Vendor by using 311 Q as the tye child material is in the project stock. In
    However the customer would like to have a report in which we can see the stock provided to vendor  ' Vendorwise or PO wise" .
    Kindly suggest the solution.
    Thanks & regards,
    Sudhir

    Hi
    The stock monitoring for SC stocks at vendor can be done uswing ME2O report.
    If you want to see the total stocks available at vendor then use report MBLB

  • Regarding the simple ALV report

    Hi All,
    I created the simple code for disply of the alv report the code is provided below,but the output is showing only the column heading not the data in the grid, i won't came to know where the problem is please find the problem in the code.
    Regards
    Sai
    ********sample code**********
    type-pools : slis.
    data : b_display type slis_t_fieldcat_alv,
           w_display type slis_fieldcat_alv.
    data : begin of itab_display occurs 0,
            kunnr type kna1-kunnr,
            name1 type kna1-name1,
            end of itab_display.
    data : gd_repid like sy-repid.
          itab_display-name1 = 'ram'.
          itab_display-kunnr = '10000033242'.
          append itab_display.
          clear itab_display.
          itab_display-name1 = 'sai'.
          itab_display-kunnr = '10000033243'.
          append itab_display.
          clear itab_display.
       w_display-col_pos = 0.
       w_display-fieldname = 'name1'.
       w_display-seltext_m = 'name'.
       append w_display to b_display.
       clear w_display.
       w_display-col_pos = 1.
       w_display-fieldname = 'kunnr'.
       w_display-seltext_m = 'cus.no'.
       append w_display to b_display.
       clear w_display.
    gd_repid  = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_CALLBACK_PROGRAM  = gd_repid
      IT_FIELDCAT       = b_display[]
      I_SAVE            = 'X'
      TABLES
        t_outtab       =  itab_display.

    Hi,
    Please use the following code.
    type-pools : slis.
    data : b_display type slis_t_fieldcat_alv,
    w_display type slis_fieldcat_alv.
    data : begin of itab_display occurs 0,
    kunnr type kna1-kunnr,
    name1 type kna1-name1,
    end of itab_display.
    data : gd_repid like sy-repid.
    itab_display-name1 = 'ram'.
    itab_display-kunnr = '10000033242'.
    append itab_display.
    clear itab_display.
    itab_display-name1 = 'sai'.
    itab_display-kunnr = '10000033243'.
    append itab_display.
    clear itab_display.
    w_display-col_pos = 0.
    w_display-fieldname = 'NAME1'.
    w_display-tabname = ITAB_DISPLAY.
    w_display-seltext_m = 'Name'.
    w_display-ddictxt   = 'M'.
    append w_display to B_DISPLAY.
    w_display-col_pos = 1.
    w_display-fieldname = 'KUNNR'.
    w_display-tabname = ITAB_DISPLAY.
    w_display-seltext_m = 'cus.no'.
    w_display-ddictxt   = 'M'.
    append w_display to B_DISPLAY.
    gd_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = gd_repid
    IT_FIELDCAT = b_display[]
    I_SAVE = 'X'
    TABLES
    t_outtab = itab_display[].
    Regards,
    Sankar.

  • Specifications for the report regarding the invoiced quantity.

    Hi all SAP gurus,
    I want to give specifications to the abaper regarding the layout of a report. The details are sales order, materials in it, order quantity, invoiced qty, balance qty and stock against the balance qty.
    I want to know the table & field name  where the qty is getting updated. Suppose order qty is 20, today i invoice 5 qty. The balance is 15. When i run the report, in the invoiced qty column the system should show 5. Tomorrow i invoice 10 qty, the balance will be 5. When i run the report again, in the invoiced qty column, the system should show 15.
    Where is the data stored regarding the updated qty which is already invoiced.
    The scenario is MTS. Is it possible to show the exact available qty in the balance qty. column some material may be confirmed for other sales order also.
    Regards,
    Allabaqsh G. Patil

    Hi
    Need to understand couple of more things before i tell you the fields as are you considering report Based ON invoice or delivery as you are saying that order quantity is 20 and invoice is 5 , ( do you mean to say delivered quantity is 5)
    secondly since this report is for stock are you taking into the account of all the pending orders not yet delivered , partially deliverd.
    Hope  you understand this as this report could change every minute the order is delivered
    And as per my knowledge there is no such table which can give  you that information , you need to write a logic which will consider the open orders, partially delivery , and stuff into .....hope i am in Sync with what you are asking
    Cheers

  • How to send a report for particular job chain every hour regarding the job

    Hi Gerben/Anton
    We are running one jobchain for all billing jobs . Is any chance is there to send a report automatically to certain pupils for every one hour regarding the job status(excel format ) .
    Coudl you please help on this it should be good if i get any reply on this .
    Thanks
    Ramkumar

    Hi Ram,
    I need your help on getting mail alert with  log file.
    here is how i have provide the parameter valure for job definition: system_mail_sent.
    Step1 with one job1 and step2 with one job1
    In step2 , i have included the job definition to send mail. with below parameter.
    Relative Job: Step 1, Job 1
    Job File: step 1, job 1: step 1/log.txt
    Please let me  know if the above method is correct or not.
    NOTE: mail server and from address are configured.
    Thanks,
    Karthik

  • " Errors have been discovered when checking the Expense Report"

    Hi all,
    I am getting this following error while trying to review the New Travel request
    Error : " Trip cannot be saved in this status "
    "Errors have been discovered when checking the Expense Report. Please correct them in order to proceed"
    I am unable to save the travel request and I am stuck here.
    Can someone provide me with a solution to this.
    (We are using EP7, ESS 1.0 , EA-HR - 600,SP17 )
    Thanks in advance,
    NR

    Hi all,
    When i checked in the default trace file ... a statement " No end date for validity of trip schema PL defined in customizing. Infinite validity is assumed.# " is present ..
    can some tell me what needs to changed in the SPRO settings ...

  • Hi, i was wounding if anyone would help me get information on the company regarding the acquisition of, beats by dre, could someone please help me out as i am doing a college report on this and need some good sources of information

    hi, i was wounding if anyone would help me get information on the company regarding the acquisition of, beats by dre, could someone please help me out as i am doing a college report on this and need some good sources of information

    Try a search with Google.
    Why should we do your homework for you?

  • Regarding attachment of own smartforms with the standard report

    hi experts,
                     cud u plz tell me how to attach our own smartforms with the standard report i.e if i want to attach a smart forms with me23n to get the printout......plz help me...

    Hi
    Goto the NACE tcode and attache the own smartform and attach to the output type
    NACE is the Tcode used to link the Application type, Output Types and its processing Routines like ( Driver programs and attached Script forms or Smartforms).
    You should know the Application of a document first Like:
    for PO it is EF, for sales Doc's it is V1, for Delivery docs it is V2, for billing Doc's it is V3 etc.
    so first select the Application type (ex: EF) for PO and press OUtput types
    then a list will come in that you should know the related output type for PO.
    in this case it is NEU,
    select that and click on the processing Routines button on the left side
    it will display the Medium, Driver Program and the Script form or smartform related to that document..
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Regarding Issue when Exporting the Output of the Discoverer Report to Excel

    Hi,
    Can Any of you guys help me out in this issue. I am exporting the Discoverer Report Output to Excel sheet, I am able to export but while I am opening the excel sheet I am getting an error saying "UNABLE TO READ FILE".
    Please help me out in this Issue, it is so urgent.
    Thanks in Advance..
    Raja.

    Hi,
    Is there any way to export the output of scheduled Discoverer Reports to a particular server using Discoverer plus.Only by openning and exporting each report manually.
    is there any way to get the output name in a particular syntax. I want to concatenate date in the output name.Only by entering the filename when you do the export.
    The best way to do this is to use Discoverer Desktop and a third party scheduler. Then you can export all your reports automatically and define the filename used in the output. Search this forum for more information on third party schedulers.
    Rod West

  • Regarding the Report's Default Value

    Now the default value of the CrystalDecisions.CrystalReports.Engine is empty which is a problem clarified by both Luke and Don Williams. Don provided a good tips for code, referring Don's reply at Jan 10, 2014 and Jul 31, 2012, I’ve tested this and it is worked, and I got a default value. However, the other sever problem has been occurred. Since the unmanaged code (COM) can't construct (casting) to the managed code directly, since it is a interface. Otherwise the original all Crystal Document objects will be wiped out, and become null value. Here is my analysis referred Don’s code:
    foreach (CrystalDecisions.ReportAppServer.DataDefModel.ParameterField rasParamfield in                                                             myReport.ReportClientDocument.DataDefController.DataDefinition.ParameterFields)
    Here myReport is coming from CrystalDecisions.CrystalReports.Engine.ReportDocument, so this code will not be useful if you want to keep myReport active. From this point, I do not know what another alternatives could be used to achieve this or using Reflection , and how?
    Any responses would be so appreciated.
    J. Huang

    Hi Johnson,
    Correct, but mostly it works without having to set the viewer to the RAS Report Object but just in case you do then I use a flag id RAS has modified the report and set the viewer accordingly:
    You still need to open the report by the Engine but then assign it to the RAS client Doc:
    add these assemblies:
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    using CrystalDecisions.ReportAppServer;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.ReportAppServer.CommonControls;
    using CrystalDecisions.ReportAppServer.CommLayer;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.ObjectFactory;
    using CrystalDecisions.ReportAppServer.Prompting;
    using CrystalDecisions.ReportAppServer.DataSetConversion;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportSource;
    Global flag:
    bool IsRpt = true;
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rptClientDoc;
    In the routine to you update the values add IsRpt =  false;
    In your open method use this:
    rptClientDoc = new CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocument();
    rpt.Load(rptName.ToString(), OpenReportMethod.OpenReportByTempCopy);
    rptClientDoc = rpt.ReportClientDocument;
    Then in the view report button use this:
    try
        if (!IsRpt)
            crystalReportViewer1.ReportSource = rptClientDoc.ReportSource;
        else
            crystalReportViewer1.ReportSource = rpt;
    catch (Exception ex)
        btnSQLStatement.Text = "ERROR: " + ex.Message;
    Don

  • Help Regarding the Reports in BI

    Hi Everyone ,
    I have a question from BI Answers.
    So in 11g we can find all the recently viewed reports in the Most Recently viewed tabs in Home page ri8.
    We have a report with a Report Prompt on date and also we have this same Report on the dashboard .This Dashboard also contains a Dashboard prompt on date .
    We have a requirement .
    When the user opens the report from recently viewed tab .He need to get the date from the particular Report date prompt But When the user tries to open the report from Dashboard ,the dashboard date should pass to the report and the date which is in the report should be negated .
    Ex: Dashboard prompt has a date with june 13th and report has a date with may31. when the user tries to open the report from Recently viewed tab he need to see the data with MAY 31 and when he tries to open the same report from the dashboard then the JUNE 13th should pass to the Report and the report date MAY 31 should be negated .
    IS this possible with creating the repository variables and session variables for the dates .
    Any help is very Appreciated
    Thanks
    Sam

    Hi Sunny
    You can acheive something like your requirement by using a presentation variable and its default value.
    In your dashboard prompt, have it set a presentation variable called, say, v_date
    In your report put a filter on the date column and set it to "is equal to / is in". Click "Add More Options" and choose "Presentation Variable". In variable expr put: v_date and in the default type your report date in the correct format.
    Paul

  • Regarding the working of oracle reports

    hi,
    can any one explain how oracle reports works in general?
    & how it will be woking when we integrate it with Oracle forms?
    Thanks

    Hello,
    1 Understanding the OracleAS Reports Services Architecture
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_arch.htm#i1005582
    Integrating Oracle Forms 10g and Oracle Reports 10g
    http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    Regards

Maybe you are looking for