Download report/dashboard in pdf..

Hi experts,
1.How to download reports in pdf format.
2. How to download whole Dashboard.
S

1.How to download reports in pdf format.
We don't have individual report to download in PDF.Anyway we have Download to excel,powerpoint,Download Data,Webpage.
The above options are available in Download hyperlink when you enable the downlaod option.
Edit Dashboard -> properties->Report Link and check the download Dashboard.
2. How to download whole Dashboard.
This property is available in the bottom left corner of the page with printer symbol which has download Dashboard to PDF or HTML.
Edited by: hsekar on Dec 29, 2009 7:59 AM

Similar Messages

  • How to download report data in PDF format

    <b>Hii Experts
    I have a requirement how i can store my report in pdf format ..
    Regards
    Hitesh</b>

    chk this
    http://www.members.tripod.com/abap4/Save_Report_Output_to_a_PDF_File.html
    http://www.erpgenie.com/abap/pdf_creation.htm
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    * BIN_FILESIZE =
    filename = i_pfad
    filetype = 'BIN'
    * IMPORTING
    * FILELENGTH =
    TABLES
    data_tab = i_att_cont
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE i000(zv) WITH 'Problem mit PDF Darstellung'.
    ENDIF.
    CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
    EXPORTING
    spoolid = spoolnr.
    CALL FUNCTION 'WS_EXECUTE'
    EXPORTING
    document = ' '
    commandline = i_pfad
    program = 'AcroRd32.exe'
    EXCEPTIONS
    frontend_error = 1
    no_batch = 2
    prog_not_found = 3
    illegal_option = 4
    gui_refuse_execute = 5
    OTHERS = 6.
    IF sy-subrc <> 0.
    MESSAGE i000(zv) WITH 'Acrobat Reader nicht gefunden!'.
    ENDIF.

  • Converting OBIEE Answers / Interactive Dashboards into .pdf or .xls files

    Hi all;
    I’m a freshie here as well as in Business Intelligence industry. Right now, without prior knowledge about this tool, I’m working in OBIEE answer.
    Is it possible for us to convert OBIEE answer report/dashboard into .pdf or .xls files? Other tools like Cognos and Business Object have their own utilities to convert the tool’s reports into those formats. I believe OBIEE also have that essential, but untill now, i couldn’t find it.

    You can download Reports on Dashboard to PDF and HTML from:
    Click Printer Friendly icon placed at bottom left corner and PDF or HTML.
    You can download individual reports on Dashboard:
    Page Options ==> Edit ==> Report Properties ==> Report Links. Check the options you want to see below the report.

  • Download report to PDF at Output

    Hi SDN's,
    I am having a report which shows a output. Now my requirement is i need to download the Output of the Report as a PDF.
    I would need to place a button on the appl tool bar, clicking on which should throw a popup of File Select Dialog.
    Upon giving the filename, the output should be downloaded to the filepath mentioned.
    I have already achieved the placing of button on the appl tool bar.
    But my Question is how to show a popup of giving a File Select Dialog upon clicking the button.
    And now Function module : CONVERT_OTF_2_PDF is used to convert to PDF. Is this right?
    Is my approcah correct. Please suggest me if i am wroing at any point.
    Regards
    Pratyusha

    Hi,
    I will give u sample code...
    DATA: fm_name TYPE rs38l_fnam,control TYPE ssfctrlop, op TYPE ssfcompop,
          p_form TYPE tdsfname VALUE 'ZTAX_COMPU',
          errtab  TYPE tsferror,spoolid TYPE ssfcrescl.
    DATA:t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
    * Internal table to hold OTF data recd from the SMARTFORM
    *T_OTF_FROM_FM TYPE SSFCRESCL,
    * Internal table to hold the data from the FM CONVERT_OTF
    t_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA:
    *w_form_name TYPE tdsfname VALUE 'ZSURESH_TEST',
    w_fmodule TYPE rs38l_fnam,
    w_cparam TYPE ssfctrlop,
    w_outoptions TYPE ssfcompop,
    w_bin_filesize TYPE i, " Binary File Size
    w_file_name TYPE string,
    w_file_path TYPE string,
    w_full_path TYPE string,pnrno(8),ldate TYPE sy-datum.
    CLEAR control.
        control-preview   = 'X'.
        control-no_open   = 'X'.
        control-no_close  = 'X'.
        control-no_dialog = 'X'.
        control-getotf = 'X'.
    *  control-DEVICE     = 'A000'.
        op-tddest = 'A000'.
        op-tdnewid = 'X'.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
            EXPORTING  formname           = p_form
    *                 variant            = ' '
    *                 direct_call        = ' '
            IMPORTING  fm_name            = fm_name
            EXCEPTIONS no_form            = 1
                       no_function_module = 2
                       OTHERS             = 3.
    CALL FUNCTION 'SSF_OPEN'
           EXPORTING
    *     ARCHIVE_PARAMETERS       =
            user_settings            = ' '
    *     MAIL_SENDER              =
    *     MAIL_RECIPIENT           =
    *     MAIL_APPL_OBJ            =
            output_options           = op
            control_parameters       = control
          EXCEPTIONS
             formatting_error         = 1
             internal_error           = 2
             send_error               = 3
             user_canceled            = 4
             OTHERS                   = 5
    CALL FUNCTION fm_name
      EXPORTING
    *     ARCHIVE_INDEX              =
    *     ARCHIVE_INDEX_TAB          =
    *     ARCHIVE_PARAMETERS         =
          control_parameters         = control
    *     MAIL_APPL_OBJ              =
    *     MAIL_RECIPIENT             =
    *     MAIL_SENDER                =
          output_options             = op
          user_settings              = ' '
          emp_no                     = itab-emp_no
          proc_yyyymm                = procyymm
          category                   = itab-category
          sp1                        = wa
          sp2                        = wa1
          itexem                     = exem
        TABLES
          it_etc                     = it_etc
          it_f16                     = it_f16
          it_hrc                     = it_hrc
       EXCEPTIONS
         formatting_error           = 1
         internal_error             = 2
         send_error                 = 3
         user_canceled              = 4
         OTHERS                     = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'SSF_CLOSE'
        IMPORTING
          job_output_info  = spoolid
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   error handling
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      REFRESH : it_etc,it_f16,it_hrc.CLEAR : it_etc,it_f16,it_hrc.
      t_otf[] = spoolid-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
         max_linewidth               = 10
       IMPORTING
         bin_filesize                = w_bin_filesize
    *   BIN_FILE                    =
        TABLES
          otf                         = t_otf
          lines                       = t_pdf_tab
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         err_bad_otf                 = 4
         OTHERS                      = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CLEAR:w_full_path.
      IF itab-pnrno NA sy-abcde.
        UNPACK itab-pnrno TO itab-pnrno.
      ENDIF.
      pnrno = itab-pnrno+2(8).
    *  SHIFT pnrno LEFT DELETING LEADING '0'.
      CONCATENATE path '\' pnrno '.pdf' INTO w_full_path.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize = w_bin_filesize
          filename     = w_full_path
          filetype     = 'BIN'
        TABLES
          data_tab     = t_pdf_tab.
      CLEAR w_full_path.
      CONCATENATE 'Download completed for Employee - ' itab-emp_no  INTO w_full_path SEPARATED BY space.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
       EXPORTING
    *         PERCENTAGE       = 0
         text             = w_full_path.
      CLEAR : t_otf,spoolid, t_pdf_tab,pnrno.
      REFRESH : t_otf, t_pdf_tab.
    Regards,
    V.Balaji
    Reward if Usefull...

  • Call to predefined Report Query for PDF download does nothing

    I am trying to download a PDF report which is based upon 2 queries. Each query has a where clause with values taken from page items. I have installed OBI Publisher 11.1.1.5 and used the OBI Publisher 11.1.1.5 Word plug-in to create the RTF file that I then uploaded to the Shared Components->Report Layout.
    I created a new region button to call the Report Query. However, whenever I click on the button to download the PDF, nothing happens. I have looked at the debug and the button appears to be executing OK, except that nothing happens.
    The APEX to OBIP configuration is working since I am able to have OBIP generate other report PDFs that aren't using the predefined query. Stated a bit differently, reports regions that have the Print Attributes set to "Enable Report Printing=Yes" and "Report Layout=Default Report Layout" work fine. Reports based upon the predefined query and launched using a region button do not do anything.
    Environment: APEX 4.1, DB 11.2.0.2, OBIP 11.1.1.5
    Any help with this PDF issue is greatly appreciated.
    Thanks,
    Reid

    Thank you again for your reply, Udo.
    Here are my responses:
    * As a matter of fact, I am doing a copy / paste from the predefined query to the report region source.
    ** What exactly do you mean by that? Don't you print the actual region?
    I need to produce a PDF that is the compilation of 4-5 queries. Therefore, I cannot print a region to PDF since APEX (as far as I know) does not allow for the printing of multiple regions (1 query per region) to a single PDF file. So, I am creating a PDF that is based upon multiple queries which I predefine in the shared components -> report queries. Then, I'm creating a region button that calls a downloadable report when it is clicked.
    Your question has made me realize that indeed it doesn't matter what query I have in the report region since I am calling a predefined report. When nothing was happening when I attempted to generate the PDF, I guess I started to think that the problem was with the queries on the page and so I made them match exactly with what the queries are in the shared components->report queries.
    Please advise if something is wrong with my understanding here.
    I checked the OBI Publisher logs (at least what I could locate) and I didn't see anything show up there.
    /u02/app/ohs/obip_mw/user_projects/domains/bifoundation_domain/servers/AdminServer/logs
    I checked the OHS access_log and I didn't see anything that looks like an error. I also don't see anything in the APEX page debug. It appears to process normally when the button is clicked.
    From the access_log:
    192.168.1.137 - APEX_PUBLIC_USER [27/Dec/2011:22:17:30 -0500] "GET /pls/apex/f?p=4000:RUN_PAGE:55206340610065:BRANCH_TO_PAGE_ACCEPT:NO::FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW:103,235,103 HTTP/1.1" 302 -
    192.168.1.137 - APEX_PUBLIC_USER [27/Dec/2011:22:17:30 -0500] "GET /pls/apex/f?p=103:235:55206340610065::::: HTTP/1.1" 200 21588
    192.168.1.137 - APEX_PUBLIC_USER [27/Dec/2011:22:17:32 -0500] "POST /pls/apex/wwv_flow.accept HTTP/1.1" 302 -
    192.168.1.137 - APEX_PUBLIC_USER [27/Dec/2011:22:17:32 -0500] "GET /pls/apex/f?p=103:235:4495899155137965::::: HTTP/1.1" 200 21588
    Here is a look at the page debug:
    0.00246     0.00107     A C C E P T: Request="TRANSCRIPT_PDF"     4
    0.00350     0.00501     Metadata: Fetch application definition and shortcuts     4     
    0.00851     0.00080     alter session set nls_language="AMERICAN"     4     
    0.00931     0.00060     alter session set nls_territory="AMERICA"     4     
    0.00991     0.00078     NLS: CSV charset=WE8MSWIN1252     4     
    0.01069     0.00067     ...NLS: Set Decimal separator="."     4     
    0.01136     0.00083     ...NLS: Set NLS Group separator=","     4     
    0.01219     0.00082     ...NLS: Set g_nls_date_format="DD-MON-RR"     4     
    0.01301     0.00079     ...NLS: Set g_nls_timestamp_format="DD-MON-RR HH.MI.SSXFF AM"     4     
    0.01380     0.00077     ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"     4     
    0.01457     0.00064     ...Setting session time_zone to -05:00     4     
    0.01522     0.00077     Setting NLS_DATE_FORMAT to application date format: DD-MON-YYYY HH:MIPM     4     
    0.01599     0.00094     Setting NLS_TIMESTAMP_FORMAT to application timestamp format: DD-MON-YYYY HH:MIPM     4     
    0.01693     0.00077     ...NLS: Set g_nls_date_format="DD-MON-YYYY HH:MIPM"     4     
    0.01770     0.00078     ...NLS: Set g_nls_timestamp_format="DD-MON-YYYY HH:MIPM"     4     
    0.01848     0.00068     ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"     4     
    0.01916     0.00046     NLS: Language=en-us     4     
    0.01962     0.00219     ...metadata, fetch translated application info     4     
    0.02181     0.00088     ...fetch session state from database     4     
    0.02269     0.00096     fetch items     4     
    0.02365     0.00090     ...fetched 32 session state items     4     
    0.02455     0.00170     Authentication check: CUSTOM TABLE AUTH (NATIVE_CUSTOM)     4     
    0.02625     0.00074     ... sentry+verification success     4     
    0.02698     0.00057     ...Session ID 4495899155137965 can be used     4     
    0.02755     0.00056     ...Check session 4495899155137965 owner     4     
    0.02811     0.00064     Setting NLS_DATE_FORMAT to application date format: DD-MON-YYYY HH:MIPM     4     
    0.02875     0.00080     Setting NLS_TIMESTAMP_FORMAT to application timestamp format: DD-MON-YYYY HH:MIPM     4     
    0.02955     0.00062     ...NLS: Set g_nls_date_format="DD-MON-YYYY HH:MIPM"     4     
    0.03017     0.00069     ...NLS: Set g_nls_timestamp_format="DD-MON-YYYY HH:MIPM"     4     
    0.03086     0.00053     ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"     4     
    0.03139     0.00130     ...Check for session expiration:     4     
    0.03269     0.00055     ...Metadata: Fetch Page, Computation, Process, and Branch     4     
    0.03323     0.00102     Session: Fetch session header information     4     
    0.03425     0.00047     ...Setting session time_zone to -5:00     4     
    0.03472     0.00187     ...metadata, fetch page info     4     
    0.03660     0.00092     ...Validate item page affinity.     4     
    0.03751     0.00050     ...Validate hidden_protected items.     4     
    0.03801     0.00061     ...Check authorization security schemes     4     
    0.03862     0.00095     Session State: Save form items and p_arg_values     4     
    0.03957     0.00081     ...Session State: Save "P235_TRANSCRIPT_ID" - saving same value: "7"     4     
    0.04038     0.00065     Processes - point: ON_SUBMIT_BEFORE_COMPUTATION     4     
    0.04102     0.00082     Branch point: Before Computation     4     
    0.04185     0.00054     Computation point: After Submit     4     
    0.04239     0.00079     Tabs: Perform Branching for Tab Requests     4     
    0.04317     0.00065     Branch point: Before Validation     4     
    0.04382     0.00111     Validations:     4     
    0.04493     0.00165     Perform basic and predefined validations:     4     
    0.04658     0.00070     Perform custom validations:     4     
    0.04728     0.00054     Branch point: Before Processing     4     
    0.04782     0.00057     Processes - point: AFTER_SUBMIT     4     
    0.04839     0.00054     Branch point: After Processing     4     
    0.04893     0.00096     ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: (Unconditional)     4     
    0.04989     0.00071     Stop APEX Engine detected     4     
    0.05059     0.00055     Stop APEX Engine detected     4     
    0.05114     0.00122     Final commit     4     
    0.05236     -     End Page Processing

  • Download Reports of a Dashboard Page

    Hi,
    I have a requirement to download all the reports published in a page in to excel in a single download button. I know to download report by report by giving report links for each report. Can you guys help me to download all the reports published in a page?
    Phani.

    Phani,
    We don't have that option to download the entire page into Excel. PDF/HTML is possible .Think about JScript (not sure)
    thanks,
    Saichand.v

  • Documentation: Reporting with evDRE.pdf -- Download Reports?

    Dear Experts,
    I got some documenation from our IBM consultant. One is called "12. Reporting with evDRE.pdf" and you can find some links to download reports in it. It would be very useful for me to know how the links work? How can I get all these mentioned helpful reports available? I already asked our consultant but he also don't know it and refered to that forum.
    Thanks in advance!
    Jeannine

    Yes in some reports yes; but making some tests I tried also to disable the hide from the rows this doesn't change anything;
    A additional information: I did a short report with 1 line and 1 column (with suppression).
    When I launch with 1 column 1 line (of course with column suppressed) the pdf is generated
    When I add a second column after the suppressed column the pdf is generated
    when I add a second column before the suppressed column I have the error.

  • Do we have any option to track the number of downloaded reports from the OBIEE dashboard or Analysis by the user using usage tracking.

    Do we have any option to track the number of downloaded reports from the OBIEE dashboard or Analysis by the user using usage tracking.

    I'll ask the question of our onsite Microsoft consulting guys, but it's my understanding that as enterprise admins, we have no controls over it. This is an outcome of putting the end-users in charge of their own destiny.
    We can revoke a user's entitlement to Office365ProPlus in the portal and via scripts, but AFAIK only the user controls the allocation of their entitlement.
    Revoking an assignment/allocation, when logged in as the user, doesn't require access to the assigned/allocated computer, but if the information about the assigned/allocated computers in the portal is vague or ambiguous, it's easy to revoke the "wrong" one.
    There's not much here in this forum about the hosted/cloudy aspects, since this forum is mainly about the client-side bits (the client applications, setup and configuration of those) - so in here, I usually refer people off to the O365 community for the
    portal and hosted stuff.
    (we have MS onsite at the moment for a big planning piece, around O365 and also Win8.1 and VDI. I'm not usually this lucky to have those guys on tap ;)
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • I wish to upload a PDF file to my website but Firefox 3.6.12 reports it as type application/force-download and NOT application/pdf, WHY?

    My website has been running for many months, and as part of the site users can upload PDF documents to share with others. The last successful upload was 5th Nov, but to-day my upload was rejected because Firefox returned the document type as application/force-download rather than application/pdf. Uploads work fine with IE8.
    The site uses PHP to check extension and document type and, as I mentioned, has worked fine for many months. I have even attempted to upload the same document that succeeded on the 5th, but again Firefox returns application/force-download as the document type.
    Why the change?

    Just found a solution.
    In Tools, Options, Application Firefox listed TWO options against Adobe Acrobat Documents; the apprliaction/pdf and application/force-download. I have deleted mimeTypes.rdf and allowed Firefox to re-create the file. All works as it should now!

  • Download the Dashboard in Excel

    Hi Gurus,
    I know that we can download the report in Excel. Is it possible that to download the Dashboard in Excel. As i can see we can download in PDF and HTML but not in Excel. We have three different set of reports in Dashboard, Client want to download it in One Excel.
    Please let me know if any workaround is possible.
    Thanks in advance
    Regards
    @li
    Edited by: @li205 on Dec 29, 2009 8:22 AM

    I'm not aware of a workaround to download the whole dashboard to excel in one shot. You might want to look into the BI Office Plug-in, though.

  • Download entire dashboard page to excel or powerpoint

    Hi all,
    I have a requirement to download entire Dashboard page in obiee 10g version ...not report by report but the entire page. Please let us know if its possible and how?
    Thank you
    Edited by: 991740 on May 13, 2013 9:07 AM

    Thank you Srini, but I check it before and found that i get a line instead of entire graph and it is def not wanted
    "a class="NQWMenuItem" name="pdf" href="javascript:void(null)" onclick="return PortalPrint('saw.dll?Dashboard&amp;_scid=KLMwSV8VpLQ&amp;PortalPath=/shared/WDI\x2520Reports/_portal/Continuous\x2520Improvement&amp;Page=Well\x2520Overview\x2520-\x2520Tier\x25201&amp;Action=Print&amp;Format=excel',true);">Excel "
    Do I have to change anything to make the above code work?
    Edited by: 991740 on May 13, 2013 9:45 AM
    Edited by: 991740 on May 13, 2013 9:46 AM
    Edited by: 991740 on May 13, 2013 9:47 AM

  • Oracle Reports - Multi lingual pdf - jvm error

    Hi all,
    We are trying to develop a multilingual pdf report in oracle reports 9i. When we do font subsetting or embedding we get the error:
    stackpointer=3bb03200
    JVMXM004: JVM is performing abort shutdown sequence
    this error is consistent for font embedding, but for subsetting this error comes randomly. We are unable to find out any pattern of the error. Can any one pls give us an update on this.

    1) Please try in latest patchset 9.0.2.3
    2) There is recently a very similar bug logged on the issue by a customer ( do not know whether it is by you :-))
    BUG 3880762 - REPORTS ENGINE CRASHES WHEN GENERATING LARGE PDF SUBSETTING OUTPUT
    (Not yet fixed, this bug in initial description phase)
    (It gives same error)
    If this is critical to you then can try getting in touch with Support to escalate the priority of the bug.
    (First confirm with support whether it is the same issue)
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Exporting a Report to a pdf file with drill down!

    Hi,
    I would like to export a Report to a pdf file.
    My Report includes drill down options. I require the exported pdf with drill down options.
    (Similar to Navigation options in a PDF file).
    I hope this makes sense.
    Please provide a better solution for me.
    If am not wrong, this facility is not available with Crystal Reports!!!
    Thanks,
    Ramesh.

    Hi Ramesh
    You can download the trial versions of the Crystal Report from the following link:
    https://websmp202.sap-ag.de/support (Please copy the link and paste it to your web browser).
    You can get the license by putting a request in the follwoing link:
    https://websmp202.sap-ag.de/support(Click on Request License key under Service Corner).
    Hope it helps.
    Regards
    Sourashree Ghosh

  • How To Schedule an Hyperion Interactive Reporting Dashboard

    Hi . Can somebody let me know on how to schedule an Interactive REporting Dashboard Report and Export the output in PDF and Email the user.i can see the output in HTML when i schedule a pivot, Chart but i dont see anything when i try to schedule a Dashboard . Any pointers in Greatly appreciated

    Once you have the dashboard scheduled to run/ process your queries.
    Go to run the job. In there you will need to edit the cycle by clicking on Modify
    (This will open another page)
    Under the Actions sections there is a part that says
    Add a(n) select the drop down that says Email Section.
    This will take you to anther window where you can select the section you want to output (in your case the Report)
    who to send it to and what format you want to send it in (default shows Microsoft Office Web archive).
    Hopefully this will help you.

  • Report 9i like PDF  instead of CSV

    Hi,
    i'm launching my report (on ORACLE 9iAS) on the web and even if i had set up in the form
    DESFORMAT = DELIMITED
    and even if i had set up in the report
    DEFORMAT = DELIMITED
    when i call my report from the web i obtain a PDF file....
    but when i try to launch my report from report builder i obtain the delimited file
    So, i had look in all the properties of my report but i haven't found this property "wrong" setted...
    May be a problem with the web server???
    Before ask to the administrator of the web server i'd like to be sure that i don't make any error...
    Thanks in advance..

    Are you running from forms ?
    It has to be
    desformat=delimited
    May be you are doing something else wrong.
    Pls have a look at forms-reports integration whitepaper (link below) which explains the process in detail
    You can also post the reports running code here so that anyone can take a look
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

Maybe you are looking for

  • How can I active/update Direct 2d rendering in a Windows 7 or Vista Dell computer?

    I have a few PCs on the first in about:support it says: "Direct2D Enabled: Blocked on your graphics driver. Try updating your graphics driver to version 10.6 or newer." but I have tried updating and I cants find a 10.6 driver for my computer I have a

  • What are the options for viewing photos with Apple TV 2?

    I have an old Apple TV, and load the family photos on the Apple TV itself. On the Apple TV 2, I know you can connect to MobileMe and Flickr. Aside from MobileMe and Flickr, are there other options for viewing photos on the new Apple TV? Can you strea

  • Finally, I got iPhoto 6 installed, no regret.

    I just picked up a copy of iLife06 after dinner, did what Old Toad mentioned in the other thread http://discussions.apple.com/thread.jspa?threadID=348637&tstart=0. Before the installation, I recorded the numbers of each photo folder. Installed iPhoto

  • Media Source cd burning iss

    is anyone having the problem of cd's not playing properly that have been burnt via Media Source? i have a Denon stereo system that has played every burnt disc i've ever put in it - until i tried to play one burnt with Media Source. it "plays" but see

  • Rtmp streaming doesn't work on Mac OS system

    Hi all, i try to play video on Mac OS system using the standard embed code: <object height="409" width="600"> <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" /> <param name="flashvars" value="src=rtmp%3A%2F%2Fmy-