reporting

php reporting tools [closed]

醉酒当歌 提交于 2019-12-02 14:30:25
I have been developing with PHP for over ten years (since PHP version 3) and have used many different programming languages. But I have never seen any PHP reporting tools. I am looking for something similar to Jasper Reports Crystal Reports Fast Report Quick Report Report Builder I am not looking for: FPDF PHPExcel TCPDF There must be a report designer and report library. Has anyone seen PHP reporting tools comparable to those I mentioned? You should check out Php Reports http://jdorn.github.io/php-reports/ Pros: Display reports as HTML tables Add charts/graphs to accompany reports Export

What is your reporting tool of choice? [closed]

…衆ロ難τιáo~ 提交于 2019-12-02 14:19:14
Every project invariably needs some type of reporting functionality. From a foreach loop in your language of choice to a full blow BI platform. To get the job done what tools, widgets, platforms has the group used with success, frustration and failure? For knocking out fairly "run of the mill" reports, SQL Reporting Services is really quite impressive. For complicated analysis, loading the data (maybe pre-aggregated) into an Excel Pivot table is usually adequate for most users. I've found you can spend a lot of time (and money) building a comprehensive "ad-hoc" reporting suite and after the

Enterprise Reporting Solutions [closed]

亡梦爱人 提交于 2019-12-02 14:10:16
What options are there in the industry for enterprise reporting? I'm currently using SSRS 2005, and know that there is another version coming out with the new release of MSSQL. But, it seems like it might also be a good time to investigate the market to see what else is out there. What have you encountered? Do you like it/dislike it? Why? Thank you. I've used Cognos Series 7, Cognos Series 8, Crystal Reports, Business Objects XI R2 WebIntelligence, Reporting Services 2000, Reporting Services 2005, and Reporting Services 2008. Here's my feedback on what I've learned: Reporting Services 2008

How do I dynamicaly create an SSRS Report?

落爺英雄遲暮 提交于 2019-12-02 13:10:34
问题 Im trying to create a report in SSRS. The report calls a stored procedure for its data. I want to display the data in a table. But the thing is, the result from the stored procedure differs from time to time, because every customer has its own 'template'. This means the result for customer A could be : AccountNumber | CustomerID 1234567890 0987654321 1579086421 1234565465 ...................... .................... and for customer B could be: CustomerName | Address Customer B Teststreet 1

SSRS: Get backgroundcolor from Cell

▼魔方 西西 提交于 2019-12-02 12:27:58
问题 I've got a report as a table. I would like to set for each column a random backgroundcolor. For this i created a Custom Script: Public Function GetColor() Dim intHighNumber AS Decimal = 255 Dim intLowNumber AS Decimal = 100 Dim NewColor AS String Dim Red AS Decimal = Int((intHighNumber - intLowNumber + 1) * Rnd + intLowNumber) Dim Green AS Decimal = Int((intHighNumber - intLowNumber + 1) * Rnd + intLowNumber) Dim Blue AS Decimal = Int((intHighNumber - intLowNumber + 1) * Rnd + intLowNumber)

How to use SubReport in XtraReport?

旧城冷巷雨未停 提交于 2019-12-02 07:13:41
问题 I have a main Report which consist of (Detail Report) Transaction # Amount Due PaymentType Money Tendered and I have another report which consist of items ordered (Items Report) Transaction # ItemName Quantity Amount Due My question is how to combine the Items Report to the Detail Report My Desired format is Transaction # AmountDue PaymentType MoneyTendered [Detail Report]==> Link through ID 回答1: Have a look here. Creating a master-detail report with the use of subreports requires the

SSRS: Get backgroundcolor from Cell

我的未来我决定 提交于 2019-12-02 05:42:16
I've got a report as a table. I would like to set for each column a random backgroundcolor. For this i created a Custom Script: Public Function GetColor() Dim intHighNumber AS Decimal = 255 Dim intLowNumber AS Decimal = 100 Dim NewColor AS String Dim Red AS Decimal = Int((intHighNumber - intLowNumber + 1) * Rnd + intLowNumber) Dim Green AS Decimal = Int((intHighNumber - intLowNumber + 1) * Rnd + intLowNumber) Dim Blue AS Decimal = Int((intHighNumber - intLowNumber + 1) * Rnd + intLowNumber) NewColor = "#" & Hex(Red) & Hex(Green) & Hex(Blue) Return NewColor End Function In the first cell i set

How do I dynamicaly create an SSRS Report?

这一生的挚爱 提交于 2019-12-02 05:23:58
Im trying to create a report in SSRS. The report calls a stored procedure for its data. I want to display the data in a table. But the thing is, the result from the stored procedure differs from time to time, because every customer has its own 'template'. This means the result for customer A could be : AccountNumber | CustomerID 1234567890 0987654321 1579086421 1234565465 ...................... .................... and for customer B could be: CustomerName | Address Customer B Teststreet 1 Customer Test Teststreet 2 ...................... .................... There are 50 different columns to

Bash script that analyzes report files

血红的双手。 提交于 2019-12-02 04:38:49
问题 I have the following bash script which I will use to analyze all report files in the current directory: #!/bin/bash # methods analyzeStructuralErrors() { # do something with $1 } # main reportFiles=`find $PWD -name "*_report*.txt"`; for f in $reportFiles do echo "Processing $f" analyzeStructuralErrors $f done My report files are formatted as such: Error Code for Issue X - Description Text - Number of errors. col1_name,col2_name,col3_name,col4_name,col5_name,col6_name 1143-1-1411-247-1-72953-1

Use custom objects as the source for Microsoft Reports (.rdlc)

百般思念 提交于 2019-12-02 03:54:36
问题 In some instances, I prefer working with custom objects instead of strongly typed datasets and data rows. However, it seems like Microsoft Reporting (included with VS2005) requires strongly typed datasets. Is there a way to use my custom objects to design and populate reports? 回答1: I found the answer. Yes, it's possible. You just have to add a custom object as a datasource in visual studio. http://www.gotreportviewer.com/objectdatasources/index.html 回答2: I could never choose one of my own