Open Source Reporting tool

Having tried CF Report Builder several months ago and quit .
I still don't see alot on the WEB about CF Report builder and a lot
frustrated users; even with the updates. I'm back to Crystal, but
now with Crystal 11 and Crystal's cost, that appears to be an
upcoming dead end. I did see someone using an open source product
called JasprReports (with CF)and wondered if anyone has been down
that street.

http://www.google.com/search?hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial &hs=093&q=Jasperreports+coldfusion&btnG=Search

Similar Messages

  • Open source UML tool for Code ----- Sequence Diagram ?

    Are there any open source / free tools which can generate sequence diagram from java code ?
    Thanks in Advance
    Ratheesh

    check-out www.logsequencer.com - it is a very cool tool and is only $19.
    It generates sequence diagrams from log files.

  • New open-source build tool for CS Extensions

    I just released a new open-source tool for creating, compiling, debugging, packaging, and deploying extensions:
    https://github.com/creativemarket/csxs
    At a Glance:
    All project settings live in a single JSON file (not multiple XML files).
    Compiles CS5 & CS6 versions and packages them as a single ZXP. This is useful for supporting "DarkNormal" and "DarkHover" icons without ditching CS5 compatibility on your extension. It also supports other / more complicated configurations.
    Created projects contain boilerplate for re-skinning on UI change along with fixes for platform bugs.
    Generates aggregated changelogs.
    Automated deploys to S3.
    Automated git version tagging.
    Conditional compilation variables (CONFIG::debug, CONFIG::release, CONFIG::version).
    Usage:
    csxs create
    csxs debug --cs-product=photoshop --cs-version=5.5
    csxs package
    csxs deploy
    I'd love feedback, suggestions, forks, bug reports, etc!
    p.s. I really hope this doesn't come across as spammy—I mean it with the best intentions. I think it could be useful for some out there. More tools for the CS ecosystem is a win for all.
    "We encourage you to contribute content, answer questions, or comment with corrections, clarifications, tips, and more. Links to your favorite resources or expert videos could help other community members."
    http://forums.adobe.com/docs/DOC-2325

    Great tool, thanks a lot for sharing it.
    Installed it and built "Hello, world" extension, now trying to convert my existing extension project for this. Packaging CS5 / CS6 versions alone is priceless.
    Maybe a dumb question, but is it possible to switch .json and output name in command line? I have extension with 5 different versions, they have different licenses etc., so it would be great to type
    csxs package config1.json extension1.zxp
    csxs package config2.json extension2.zxp
    and so on? I'd put it all into one .sh script
    sorry if it's all already available and I just missed this part in documentation

  • Open Source BI Tool Now Supports Kodo JDO

    Folks,
    To keep you posted on the latest tools that work with Kodo JDO, we
    will try and post notices here on our newsgroups. ObjectVisualizer
    is a third party open source querying, reporting and graphing tool that
    now supports Kodo JDO. Let us know what you think.
    Neelan Choksi
    President, SolarMetric
    ObjectVisualizer is a business intelligence tool that builds upon
    Object Persistence technology to provide easy to use query, reporting,
    and charting capabilities.
    Features include: Query, filter, and aggregate data using objects,
    Interactive Data Table, Report Generation, Chart Creation, and Plugin
    Architecture.
    ObjectVisualizer now supports KodoJDO! ObjectVisualizer 1.0.1 includes
    a KodoJDO plugin along with a number of bug fixes and enhancements.
    A new Early Access release of ObjectVisualizer Server Edition is also
    available. ObjectVisualizer Server Edition EAP-2 has been upgraded to
    work with ObjectVisualizer 1.0.1 and includes a number of performance
    enhancements.
    For more information visit:
    http://objectvisualizer.com
    Thank you,
    Open Source Software Solutions, LLC
    http://opensourcesoft.net

    Folks,
    To keep you posted on the latest tools that work with Kodo JDO, we
    will try and post notices here on our newsgroups. ObjectVisualizer
    is a third party open source querying, reporting and graphing tool that
    now supports Kodo JDO. Let us know what you think.
    Neelan Choksi
    President, SolarMetric
    ObjectVisualizer is a business intelligence tool that builds upon
    Object Persistence technology to provide easy to use query, reporting,
    and charting capabilities.
    Features include: Query, filter, and aggregate data using objects,
    Interactive Data Table, Report Generation, Chart Creation, and Plugin
    Architecture.
    ObjectVisualizer now supports KodoJDO! ObjectVisualizer 1.0.1 includes
    a KodoJDO plugin along with a number of bug fixes and enhancements.
    A new Early Access release of ObjectVisualizer Server Edition is also
    available. ObjectVisualizer Server Edition EAP-2 has been upgraded to
    work with ObjectVisualizer 1.0.1 and includes a number of performance
    enhancements.
    For more information visit:
    http://objectvisualizer.com
    Thank you,
    Open Source Software Solutions, LLC
    http://opensourcesoft.net

  • Open Source Flash Tools

    Hi All,
    Just wondering if anybody can recommend any Open Source Flash generation tools on the same line as Adobe's Flash Application.
    Want to incorporate into ApEx apps.
    Thanks.
    Tony.

    Here is the Flex code that displays a grid and a text box.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute" styleName="plain" creationComplete="userRequest.send()">
       <bridge:FABridge bridgeName="flash" id="flash" xmlns:bridge="bridge.*" /> 
       <mx:HTTPService id="userRequest" url="dc_htmldb.EmployeeXml" useProxy="false" method="GET">
          <mx:request xmlns="">
          </mx:request>
       </mx:HTTPService>
       <mx:DataGrid id="dgUserRequest" x="0" y="30" rowCount="15" dataProvider="{userRequest.lastResult.Rowset.Row}">
          <mx:columns>        
             <mx:DataGridColumn headerText="First" dataField="FIRST_NAME"/>
             <mx:DataGridColumn headerText="Last" dataField="LAST_NAME"/>
             <mx:DataGridColumn headerText="E-Mail" dataField="EMAIL" width="80"/>
             <mx:DataGridColumn headerText="Phone" dataField="PHONE_NUMBER" width="125"/>
             <mx:DataGridColumn headerText="Hire Dt" dataField="HIRE_DATE" width="75"/>
             <mx:DataGridColumn headerText="Job" dataField="JOB_ID" width="75"/>
             <mx:DataGridColumn headerText="Salary" dataField="SALARY" width="55"/>
          </mx:columns>
       </mx:DataGrid>
       <mx:HBox x="5" y="0">
          <mx:Label text="Selected ID"/>
          <mx:TextInput id="selectedempid" text="{dgUserRequest.selectedItem.EMPLOYEE_ID}" width="40"/>
       </mx:HBox>  
    </mx:Application>It gets it data by calling a stored procedure (EmployeeXml) via HTTP.
    That procedure just runs a query and returns it as XML.
    To show it on the page, you just embed the Flash player in a HTML region.
    To exchange data between Flex and other HTML elements requires some javascript:
    http://labs.adobe.com/wiki/index.php/Flex_Framework:FABridge
    Tony - if you email me at dccase at yahoo dot com I can send you a link where you can my app running.

  • Need information on open source testing tools for ADF web applications

    Hi experts,
    I need to investigate on new feasible open source Java testing tools for testing ADF web applications. I have tried to google a lot but getting confused.
    My requirements as as under:
    1. The tool must be open source.
    2. It should be easy to understand and to work upon by the tester and developers.
    Selenium based testing approach is already in place for testing the application but need to search for tools other than Selenium which shall prove suitable for testing ADF applications. Kindly let me know your inputs / suggestions.
    Thanks a lot in advance.
    Neelanand

    Hi,
    Have a look at JMeter http://jakarta.apache.org/jmeter/index.html
    1. The tool must be open source.It is.
    2. It should be easy to understand and to work upon by the tester and developers.I guess it is.
    There are some specifics in configuring it for ADF, but Chris Muir wrote a nice blog about how it's done, check it out http://one-size-doesnt-fit-all.blogspot.com/2010/04/configuring-apache-jmeter-specifically.html
    Pedja

  • Open source monitoring tool for oracle Database

    Hi,
    Please suggest me any opensource tool to monitor the health, availability and performance of the Oracle Database that can be accesed through web client
    Thanks in advance

    user1687821 wrote:
    Robert,
    Thanks for the update, ya i basically need the tool to monitor the DB, but at the same time, if CPU is going high due to any query or any other reason, we must get the alert, the tool currently we are using triggers a mail for both, DB as well as CPU when it goes high, similar one is needed
    ThanksGrid control or database control will do this for you, there is a rather big however, er however. Being notified is a part of the diagnostics pack functionality (ludicrously and unjustifiably IMO). That means a license cost (unless you are already licensed for it). nagios does this as others have said as do shell scripts. I'm not aware of an open source tool that does all you want without scripting though.
    Niall

  • Is there any Open source Reporting Toll for using in swing application ?

    Is there any reporting system like crystal report or any thing for report generation. Using JTable class it is so time taking job. I have downloaded Eclipse with crystal report embedded, and have created a report but can not integrate the report with JFrame with any menu item action. All the code i got releted to JSP. and few code get that are using
    //Crystal Java Reporting Component (JRC) imports.
    import com.crystaldecisions.reports.sdk.*;
    import com.crystaldecisions.sdk.occa.report.lib.*;
    //Java Imports.
    import javax.swing.*;
    public class JRCViewReport {
         private static final String REPORT_NAME = "JRCViewReport.rpt";
         public static void launchApplication() {
              try {
                   //Open report.
                   ReportClientDocument reportClientDoc = new ReportClientDocument();
                   reportClientDoc.open(REPORT_NAME, 0);
                   //Launch JFrame that contains the report viewer.
                   new ReportViewerFrame(reportClientDoc);          
              catch(ReportSDKException ex) {     
                   System.out.println(ex);
              catch(Exception ex) {
                   System.out.println(ex);               
         public static void main(String [] args) {
              //Event-dispatching thread to run Swing GUI.  This is good practice for Swing applications
              //to help ensure that events are dispatched in a predicatable order.
              //For more information on using this method, refer to the SUN site below for more details:
              //http://java.sun.com/products/jfc/tsc/articles/threads/threads1.html
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        //Hand-off to worker function to start application.
                        launchApplication();                    
    }Also there is one file ReportViewerFrame.java
    but the error is "*com.crystaldecisions.reports.sdk*" not found
    Please help ..........................................................

    I have already use Jasper Report. Thakns a lot for your suggestion. Now I think i have solved your problem...... View the code.. this code will not open the JasperViewer but from the background it will be printed and after calling the printing function you can save a data in the database ------------------------
    JasperReport jasperReport = JasperCompileManager.compileReport(jasperDesign);
            Connection con = Database.getConnection(); // your database connection
            jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, con);
            for(int i=0;;i++) { //print all pages
                try{
                    JRPrinterAWT.printPages(jasperPrint,i,i,false);
                }catch(Exception e) {
                    break;
            }

  • JDBC- Reporting Tool

    Hi
    I need to know which is the best open source reporting tool to use.. I have come across jasperReport and JfreeReport, if any of u have used any, please suggest which is best and how to go abt it.
    Thanks

    To generate a Jasper Report PDF report
    1. Create a JasperReports configuration file config.xml
    2.
    Create a JasperDesign from the config file.
    InputStream input=new FileInputStream(new File("c:/input/config.xml"));
    JasperDesign design = JRXmlLoader.load(input);
    3. Create a JaspeReport from JasperDesign.
    JasperReport report = JasperCompileManager.compileReport(design);
    4. Obtain a JDBC connection to retrieve data from the database to create a JasperReport.
    InitialContext initialContext = new InitialContext();
    DataSource ds = (DataSource)initialContext.lookup("java:comp/env/jdbc/DatabaseDS");
    Connection conn = ds.getConnection();
    jdbc/DatabaseDS is the jndi for the datasource.
    5. Generate a JasperPrint report from the compiled report design.
    JasperPrint print = JasperFillManager.fillReport(report,
    parameters, conn);
    The parameters in the fillReport method consist of the parameter values specified in the <parameter/>
    elements of the XML configuration file
    6. The JaspeReport may be exported to a XML, PDF, CSV file. For example, to export to a PDF file:
    OutputStream output=new FileOutputStream(new File("c:/output/JasperReport.pdf"));
    JasperExportManager.exportReportToPdfStream(print, output);

  • Good site for Video Editing tools (open source)

    I'm a recent convert to Mac, and I'm having a hard time finding comparable tools to what is available via open source on the Windows side. Specifially in the H.264 arena. There are a multitude of open source encoding tools for Windows. I'm sure there have to be some for Mac. Are there any good sites that list these? I'm tried versiontracker and The Mac Orchard, but I'm hoping for something more specific like VideoHelp.com
    Any suggestions? I'm looking for encoding software that can do inverse telecine, import DivX/Xvid/DV, Trim video (to remove letterboxing), and encode to H.264.
    Thanks!

    Can't help with the video stuff, but since you're a newcomer to the Mac, see these:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    MacFixIt Tutorials,
    MacTips, and
    Switching to the Mac: The Missing Manual, Leopard Edition.
    And a link to open source software: http://sourceforge.net/ Search for *multimedia for Mac*.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist.
    Welcome to the Switch To A Mac Guides, and
    A guide for switching to a Mac.

  • DBAShell - New Open Source Project for Oracle DBA's

    I'd like to have this project included in the Open Source Oracle tools list at: http://www.oracle.com/technology/community/opensource_projects.html
    I’'ve been an Oracle DBA for quite some time (since 7.0.13) and a developer for many years. One of the things I'’ve always wished for was an easier way to set up environment variables for different Oracle Home’s and a way to provide passwords to scripts without embedding them in plain-view.
    About 3 years ago, I started a set of functions and scripts at my company that did exactly just that and provided many more functions for things like checking database status, running scripts quietly unless errors are detected, running actions in parallel (like fast shutdowns at once, or multiple analyzes), restarting databases in a guaranteed fashion, aliases to common folder locations, etc..
    About a month ago, after putting all this time and effort into these scripts and using them in production all this time, I realized I wanted more out of the scripts like support for other databases and thought that it would be best if I gave it new life as an Open Source project.
    So that is how http://sourceforge.net/projects/dbashell/ was started. Now it’s in a second release (DBAShell 0.85) that is more modular and would allow other people to easily add support for other OS’s, other Shells, and other Databases.
    Here is a description of the project from the latest news item:
    DBAShell is a project based around Shell functions and scripts designed to make it easy for DBA's to use Databases in a command line environment. Currently supported is Oracle with ksh and bash on AIX, Solaris, Linux. The code base itself is 3 years old and has been in use in Production environments all of that time.
    Features include:
    * Automatic setting of all environment variables based on SID requested.
    * Manage PATH's and other path like variables for each ORACLE_HOME needed.
    * Run scripts with stored passwords (no more hard-coding of passwords!!)
    * Automatically set SID based on Script location (makes it easier to share scripts between SID's)
    * manage temporary script output and check for oracle errors in output
    * check database status and versions from scripts
    * stop/start databases in parallel (faster startup)
    * compile all database objects
    * analyze objects in parallel (Faster analyzes)
    * set aliases and variables for common SID areas, etc..
    * many helpful commands for common Oracle tasks
    Over a thousand people have already downloaded the prior release and more are downloading every hour.
    I'm seeking feedback from anybody that would be willing to take a look at the project, trying it out, give me any feedback you have on it, and perhaps even direct me to where I could best promote this project.
    I wrote a tutorial that shows at a glance some of the more useful features of DBAShell:
    http://sourceforge.net/docman/display_doc.php?docid=34041&group_id=170224
    Main site:
    http://sourceforge.net/projects/dbashell/
    Documentation: http://sourceforge.net/docman/display_doc.php?docid=33704&group_id=170224
    Download:
    http://prdownloads.sourceforge.net/dbashell/dbashell-0.85.tar.gz?download

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

  • BI reporting tool free or open source for adhoc reporting

    Hi All, there is adhoc reporting option in jaspersoft server but it costs.
    I want to know what is the cost of jasperserver and pentaho reporting tool for a single user and contact details to purchase it.
    preferrably pentaho reporting software.

    www.gentleware.com
    Follow the bouncing link. The tool is called
    Poseidon. The community edition is a free download,
    the Professional version is not terribly expensive.
    Cheers,
    PSPoseidon is based on ArgoUML, which BSD licensed.
    I'm currently using ArgoUML and I like, although it has
    a lot of bugs that drive me nuts.

  • New free/open-source tool to encapsulate the OCI interface

    Hello,
    Here is a short presentation and a link to a new free tool available on soureceforge.net.
    This tool is a powerful "wrapper" to encapsulate the OCI interface:
    Introduction
    OCILIB is a free, open source and platform independant library, written in C, that access Oracle Databases.
    The OCILIB library :
    * Encapsulates OCI (Oracle Call Interface which is powerful but complex)
    * Hides OCI complexity
    * Proposes instead a simple, readable and reusable API
    * Offers up to 310 simple and straightforward APIs.
    Introduction
    Current version : 2.3.0 (2008-03-30)
    Main features
    * Data binding
    * Integrated smart define and fetch mecanisms
    * Full Unicode support on all platorms
    * Multi row fetching
    * Binding array Interface for fast and massive bulk operations
    * Reusable Statements
    * Connection Pooling
    * Global Transactions
    * Returning DML feature support
    * ROWIDs support
    * Named Types (Object types) support (User or Builtin)
    * Cursors
    * PL/SQL blocks
    * PL/SQL Ref cursors and Nested tables
    * LOB (BLOBs/ FILEs)
    * Supports lobs > 4Go
    * Long datatype (piecewise operations)
    * Provides "All in one" Formatted functions (printf's like)
    * Smallest possible memory usage
    * Date/time management
    * Timestamps and Intervals support
    * Error handling
    * Describe database schema objects
    * Access columns by index or name
    * Hash tables API
    * Portable Threads and mutexes API
    * Supports static / shared oracle linkage
    * Support runtime loading (no OCI libs required at compile / time)
    * Great performances (straight OCI encapsulation)
    Download
    Get OCILIB from OCILIB Project page at Sourceforge Website:
    http://orclib.sourceforge.net/
    Hope this would help some of you ;D
    Francois

    Don't give up just because there are other options out there.
    Adobe is only giving up the free tool for education purposes, or unemployed developer.  You didn't say if you were one of those.
    I believe over time there will be plenty of room for alternate IDE approaches that support the Flex Framework; and in fact there are quite a few options already out there.

  • SCCM Client Report Tool not opening up correct URL to Report Server

    I recently install the SCCM 2012 right click tools and within the downloaded zip file there is SCCMClientToolsSetup2012.exe which adds a whole bunch of additional features when right clicking devices in the console. The problem is no matter what I put as
    the Report Server while doing the install, it never opens the reports for the device... It gives me the following error:
    Server Error in '/ReportServer' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it
    is spelled correctly.
    Requested URL: /ReportServer/Pages/ReportViewer.aspx
    I have changed the report server virtual directory to match ReportServer from the default, but it still does not open the reports... Any idea what could I might be wrong?
    I have the console and right click tools installed on my Windows 7 workstation. the Server is Windows 2012 Datacenter with SQL 2012 and SCCM 2012 R2.
    Thanks!
    Tony

    Yes, it appears to work directly from the console and via web... But it does show Report.aspx vs. ReportViewer.aspx.
    Hi,
    Did you open reports from Web Service URL in Reporting Services Configuration Manager?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Installed BOE XI R3.1 Client tools now I cant open crystal reports?

    After I unistalled the client tools I cant open Crystal Reports from local drives. I can from BOE, but not local or network drives. Plus all the Icons from these drives have been removed. What did I do wrong?

    Need more info and it's not clear what you did or what is left on your PC but typically which ever CR product you still have installed going to the Add/Remove software and doing a Repair install on Crystal Reports Designer should fix the problem.
    Thank you
    Don

Maybe you are looking for

  • Can you check for data in one table or another but not both in one query?

    I have a situation where I need to link two tables together but the data may be in another (archive) table or different records are in both but I want the latest record from either table: ACCOUNT AccountID     Name    123               John Doe 124  

  • How do i transfer apps from an old iphone to a new one?

    How do you transfer content (apps, pictures, etc) from an old iPhone 3 to a new iPhone 4s?

  • Storing data in a new excel sheet for each loop count

    I have a data acquisition code that takes data from the oscilloscope and saves it in an excel file. The oscilloscope has to take data at different instants(at each loop count). At each instant, the data gets appended to the same excel sheet. I just w

  • Virtual private database and cascade delete

    We can't secure rows deleted by cascade delete by vpd. User "A" have right to delete row "1" but don't have right to delete row "2". If user "A" delete row "1", database will delete also row "2" by cascade delete. Why it is possible to delete row "2"

  • Pacman root file permissions.

    I am wondering if I did something wrong in the initial Arch Linux install. Just about every time I use pacman to install a package I have to go track down and fix file permissions so I can run the program as a user. Is this normally how things are do