Oracle Matrix Rpt output to Microsoft Excel File

I am looking for a solution that would take my current Oracle 9i matrix report output directly to an excel file. I have clients that need to see the report not in a pdf format(which I currently use) but in an excel format.
Thanks,

You could either use:
a) DELIMITED output, assuming that the matrix isn't too large.
b) DELIMITEDDATA output, which will just give you a dump of the data, and you'd need to construct the cross tab directly.
c) In you're using 9i, then you could use jsp tags to output directly into an Excel html file (this could get pretty complicated for a matrix report). See an example of this at http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
Regards,
Danny

Similar Messages

  • Export the sql output to an excel file

    Hi,
    I would llke to know how can we export an sql query out put from oracle 9i to an excel file using a java code...
    Thanks in advance..
    Naveen

    Naveen,
    You can access Microsoft Excel files via JDBC using the "JdbcOdbc" driver that comes with the JDK.
    Hence a simple matter of using JDBC to both extract from Oracle and insert into Excel.
    You will find many resources on the Internet explaining how to do this.
    Please note that I am certain that this is not the only way to achieve this.
    Good Luck,
    Avi.

  • Main.vi creates 2D Arrays and I want to save the arrays in an microsoft Excel file(e.g engine_1)and in differnt worksheets(e.g. measure_1;measure_2;...)

    main.vi creates 2D Arrays and I want to save the arrays in an microsoft Excel file(e.g engine_1)and in differnt worksheets(e.g. measure_1;measure_2;...)
    The path(Grundpfad)for the excel file should be inserted in the main.vi.

    1. There's a shipping example called Write Table To XL.vi (Help>Find Examples>Communicating with External Applications>ActiveX>Excel) that you can use as a starting point.
    2. Buy the LabVIEW Report Generation Toolkit. Info can be found here.
    3. Search this forum for other examples of writing to Excel.

  • Query output transfer to excel file

    hi all,
    how can i query output transfer to excel file ? i am not using any tool. please suggest me. is there any method that i transfer that output to excel file?

    You can create a csv file. See dump_csv function from Tom Kyte.

  • Importing data from Microsoft excel file to Oracle Database with Multiple Data Tables. Need expert advice and guidance

    I posted a query on Importing data from Microsoft Excel to Oracle Database (Multiple Data Tables). I got some answer and reference from the forum.
    I presented to my Oracle consultant and representative from Oracle Malaysia. They said impossible. I do not believe what they said. I do believe can be done.
    Can someone help or direct me to an expert that can help me on this

    e90f478a-c529-4c48-b189-51eebeaed477 wrote:
    I posted a query on Importing data from Microsoft Excel to Oracle Database (Multiple Data Tables). I got some answer and reference from the forum.
    I presented to my Oracle consultant and representative from Oracle Malaysia. They said impossible. I do not believe what they said. I do believe can be done.
    Can someone help or direct me to an expert that can help me on this
    We don't know the "query on Importing data from Microsoft Excel to Oracle Database (Multiple Data Tables). "
    We don't know where you posted said query.
    We don't know what "some answer and reference" you received "from the forum."
    We don't know what it was that your "Oracle consultant and representative from Oracle Malaysia" said was "impossible".
    So on what basis are we supposed to "help or direct" to "to an expert that can help "?

  • Portal : JSP : Output in an Excel File.

    Hi,
    I am unable to get the output on a JSP Page in Microsoft Excel
    I am trying to generate an Excel Report from my Portlet. I am picking up the data for the Report from Oracle Internet Directory.
    I have created a simple JSP file ( as a Portlet ) and deployed it on Oracle App Server. I then registered a new Provider for the deployed JSP Page and added the JSP as a Portlet in a new Portal Page.
    I am trying the following code snippet in the JSP :
    <%@ page contentType="application/vnd.ms-excel"%>
    I get this weird error :
    AbstractResourceRenderer.renderBody - received IOException
    java.io.UnsupportedEncodingException: Media Type of a TextResponseWrapper must start with "text/"
    If I am correct, Portal should support this feature. I must be able to publish reports to an Excel File.
    I am new to Oracle Portal and I find this strange. The JSP page works fine in JDeveloper, but when I access it via Oracle Portal, I get the " UnsupportedEncodingException ".
    I posted my question on Metalink and was told to post my question in this forum.
    I am not sure if I need to post any other information or Configuration Settings - please do let me know if any other information is necessary.
    Thanks,
    Sandeep.

    Ok,
    After many sleepless nights and a long struggle, we were able to arrive at a workaround - simple & something that works.
    We created a Servlet ( not a Portlet ) that generates the Excel File. The Servlet is not a Portlet and as such is not restricted in the content-types that it can use. We let the user arrive at this Servlet via a simple HTML link.
    Well, that's about it ! I just wanted to post this so that anyone else tearing their hair apart with the same issue can find some solutions.
    Still, I strongly feel that a superb product like Oracle Portal should support the various content types.........
    Regards,
    Sandeep

  • Oracle Matrix Report output to XML Publisher

    We have an Oracle matrix report (rdf) registered in our applications and we are trying to format the report output using XML publisher.
    I have taken XML output of the report by changing the Report output to XML in concurrent program definition. Using this XML output we have started designing the RTF template using Template Builder for Word 5.6.2.
    I am not able to get the MAtrix output in XML publisher. I am not sure how to design a Matrix Report using Template builder for word. I am not sure whether the XML output of Original Report has Tags mentioning Matrix report attributes or Not.
    Can anyone help me by explaining how to design a Matrix Report template using XML report output. Appreicate your help.

    I have posted a Blog on our blog site about how to create a matrix report in XML-Publisher
    http://technology.amis.nl/blog/?p=1558
    Perhaps this helps.
    Marcos

  • How to output to an excel file?

    Hi,
    I have written a program that gets data from the database and I like to find out how to output the data to an excel file. I have read about similar topic on the discussion board and the solution are for the online application. Mine is a desktop application. The user can specify what the destination file is. Can anyone help. Thanks.

    The simpliest way is to take your data and write it to a Comma Dilimeted File which Excel can read without any problems or user intervention. You would use an ObjectOutputStream. Hope this helps.

  • Alv output- download to excel file

    Hi
    I have ALV report. My requirement is
    For example i have 10 records in my ALV output.
    I want to download first 5 data to excel file.
    so i need to select the data and click the button download in alv screen. I created the download button in ALV screen.
    how to write coding for this

    Hi Kumar K,
    U can do it by feeling another internal table from the final internal table which u displayed...
    suppose u want the record 5 to 12 then
    LOOP AT itab FROM 5 TO 12.
    Append itab to itab2.
    ENDLOOP.
    So now Itab2 contains record 5 to 12...
    Logic:
    Create one Custom Button ... Now For Sy-ucomm of that button... provide popup window with FROM and TO parameters...
    Then using Loop... Endloop... select that much records form internal table to another internal table say itab2...
    Now using GUI_DOWNLOAD or WS_DOWNLOAD or any other FMs and pass the internal table to this FM...
    For more information on LOOP Syntax...
    LOOP AT itab - cond
    Syntax
    ... [FROM idx1] [TO idx2] [WHERE log_exp].
    Extras:
    1. ... FROM idx1
    2. ... TO idx2
    3. ... WHERE log_exp
    Effect
    The table rows to be read in a LOOP-loop can be limited by optional conditions; if no conditions are specified , all rows of the table are read.
    Addition 1
    ... FROM idx1
    Effect
    The specification FROM is only possible with standard tables and sorted tables. This specification only accepts table rows starting from table index idx1. For idx1, a data object of the type i is expected. If the value of idx1 is smaller or equal to 0, then it will be set to 1. If the value is larger than the number of table rows, the loop is not passed through.
    Addition 2
    ... TO idx2
    Effect
    The specification TO is only possible with standard tables and sorted tables. The specification only accepts table rows after table index idx2. For idx2, a data object of the type i is expected. If the value of idx2 is smaller or equal to 0, then the loop will not be passed. If the value is larger than the number of table rows, then the value will be set to the number of rows. If idx2 is smaller than idx1, then the loop is not passed as well.
    Addition 3
    ... WHERE log_exp
    Effect
    WHERE can be specified with all table-types. After WHERE, you can specify any logical expression log_exp in which the first operand of any singular comparison is a component of the internal table. For this reason, all logical expressions are possible except for IS ASSIGNED, IS REQUESTED and IS SUPPLIED. Dynamic specification of a component through bracketed character-type data objects is not possible. Loops at sorted tables must have compatible operands of the logical expression. All rows are read for which the logical expression is true.
    Notes
    The logical expression specified after WHERE is analyzed once at entry into the loop. Possible changes of the second operand during loop processing are not taken into account.
    While with standard tables all rows of the internal table are checked for the logical expression of the WHERE- addition, with sorted tables and hash tables (as of Release 7.0) you can achieve optimized access by checking that at least the beginning part of the table key in sorted tables and the entire table key in hash tables is equal in the logical expression through queries linked with AND. Optimization also takes effect if the logical expression contains other queries linked with AND with arbitrary operators.
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • Opening microsoft excel files in numbers

    I received these document warnings when I opened my Numbers '09 version 2.3 file:
    Missing File - pct256.tiff
    Missing File - pct259.tiff
    Missing File - pct202.tiff
    Missing File - thumbs/proto-thumbail-Sums Checklist.tiff
    Missing File - pct508.tiff
    Missing File - pct2510.tiff
    Missing File - pct504.tiff
    Missing File - thumbs/proto-thumbail-Basic.tiff
    Missing File - thumbs/proto-thumbail-Sums.tiff
    Missing File - thumbs/proto-thumbail-Plain.tiff
    Missing File - pct505.tiff
    Missing File - pct507.tiff
    Missing File - pct503.tiff
    Missing File - pct203.tiff
    Missing File - thumbs/proto-thumbail-Headers.tiff
    Missing File - thumbs/proto-thumbail-Checklist.tiff
    Missing File - pct506.tiff
    Missing File - pct257.tiff
    Missing File - pct258.tiff
    This file was imported from Microsoft Excel 2008 for Mac Version 12.3.6.
    Anyone know how I can get rid of the warnings and what they mean?

    mlnott wrote:
    I have just downloaded iworks08 to my new macbook pro. I have a trial edition of microsoft excel for mac downloaded as well. I have noticed that I am not able to open excel files in numbers 08.
    It depends of the format used to save them.
    I have not been able to open numbers files in excel.
    Normal, the default format is Numbers only.
    I have used iwork 09 trial, and noticed that you are able to open and create excel files. I assume this was part of the upgrading from 08 to 09 iworks.
    There are few changes on this subject.
    Is there any way to open and/or create excel files in numbers 08?
    For open see response above.
    To create Excel file with Numbers '08, use the Export menu item.
    I wish to add that with every copy of iWork '08, Apple deliver well done PDF *_User Guides_*.
    Yvan KOENIG (VALLAURIS, France) dimanche 11 avril 2010 21:39:07

  • Can't combine Microsoft excel files.

    Word and pdf files work fine when right clicking and combining them. Excel files worked previously and will no longer combine. I have repaired, uninstalled, and reinstalled office 365. Uninistalled and reinstalled Adobe.
    Windows 7 x64, Acrobat standard XI Office 365 32bit

    Hi ErickWB,
    I agree with Michiel’s suggestion, and we can also try the methods below.
    1. Try uncheck the Ignore Other Applications that use Dynamic Data Exchange (DDE).
    Click File > Options > Advanced > General Section > Tick the option "Ignore other application that use Dynamic Data Exchange"
    http://support.microsoft.com/kb/211494/
    2. Choose Run and enter Excel.exe /regserver
    This will cause Excel to start up, re-register all of its registry keys, then quit. Now, try opening your Excel files.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Financial Reporting - Scheduling a Batch to Output/Email an Excel File

    We're using version 9 and have no good way to systematically schedule a batch report and have the output saved/emailed as an Excel file, only pdf. Is this functionality in version 11? Has anyone developed creative alternatives?
    Thanks

    You may be able to utilize Excel and SmartView VBA features to achieve the same goal as this. With enhanced security in the newer realeases of Excel automacally sending emails could be a bit tricky, but if you look around on the web you should be able to find something with this ability. I'm not sure that you could use an FR report, but a report utilizing HSGetValue or ad-hoc functionality should function.

  • Converting java output to a excel file

    I am storing the datas retrived from a file in JTable. now i need these data to be exported to an excel file. how will i do that

    http://forum.java.sun.com/thread.jspa?threadID=600161&messageID=9526245#9526245

  • Report output to MS. Excell file

    I want to print my report to MS. Excell file,
    Is there any driver to do that ?
    Or Is there anyway to do that ?
    I need the solution ASAP.
    Thank You
    ardian
    null

    Ardian B. Santoso (guest) wrote:
    : I want to print my report to MS. Excell file,
    : Is there any driver to do that ?
    : Or Is there anyway to do that ?
    : I need the solution ASAP.
    : Thank You
    : ardian
    Hi Ardian B. Santoso,
    1. Develop the Report in Character Mode.
    2. Save the O/P to file.
    3. And open the file with MS Excel.
    I hope this would be helpful for U.
    Have a Good Weekend.
    Good Luck
    Senthil Ramasamy
    null

  • How to linking Microsoft excel files over a network

    How do i link two or more computers to share one excel file. People should be able to enter data on the excel file file and also view any updates

    If you have a Sharepoint then that would be possible.
    If don't have only one active user can edit, others can access but read only.
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

Maybe you are looking for

  • Ipad keeps crashing on every app, even on settings and other Apple made apps.  A memory application shows that the free memory is shrinking.

    EVERY app on the ipad is crashing back to the menu after a few seconds.  I have tried powering down, syncing.  There does not seem to be an app that can monitor what is causing the problem.  Every app that I have was downloaded from the app store, no

  • Imac hard drive making low humming type of noise?

    I have an imac that is about a year old. I don't run a lot of stuff at one time usually. Internet, email. I do movie editing at times but not when this problem appears. My wife tells me I have sensitive ears so maybe I'm blowing this out of proportio

  • HR-OCI 6.0 Announcement

    Dear certified vendors, SAP Partner - Software - with Certified Integration, and/or Independent Software Vendor with Certified Integration for HR-OCI 4.6, Dear intertested vendors in organizational charting integration with SAP, Today, we would like

  • FPN - End user permission

    Namaste all, I have followed https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70191d1e-2bd1-2a10-d9b7-ba19500da527 for setting up FPN. But I didn't understand how to assign end-user permission for a person at the consumer portal. C

  • Goods confirmation reversal in SRM

    HI Gurus , In SRM 5.0 extended classic , 1.can we reverse a goods receipt in SRM that has been posted in ECC  ? 2.Is it possible to do return delivery through one single transaction in SRM  instead of reversing Goods confirmations one by one ?