report

The report definition is not valid

∥☆過路亽.° 提交于 2020-01-21 11:46:06
问题 I have converted an .rdlc rerort from SSRS 2005 to SSRS 2008. Now when I am going to build that project I have got error. The report definition is not valid. Details: The report definition has an invalid target namespace 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition' which cannot be upgraded. Please give me solution for this. 回答1: Just stumbled upon this question since I was having the same problem. In my case, I had a reference to an older version of ReportViewer

BIRT插件的使用

五迷三道 提交于 2020-01-20 02:42:12
BIRT 是一个优秀的报表插件,本文将涉及它的安装到简单使用的整个过程。 一,安装 1 :到 http://download.eclipse.org/birt/downloads 下载相应版本(我的 Eclipse 是 3.2 ,所以 BIRT 的版本是 2.1M5 )的 Framework 和 runtime 两个包。把 Framework 包解压,然后和其它 plugin 一样放到 Eclipse 的 plugins 和 features 目录下;把 runtime 解压到任意目录下,如 C:\birtruntime 。这里说明一点: BIRT 的 runtime 在有些时候并不需要,比如但 plugin 导出为 rcp 发布后,在其它的机器上就不需要安装 runtime 来运行报表了。 2 : BIRT 要依赖 GEF 和 EMF ,所以你的 Eclipse 平台要正确安装 GEF 和 EMF 。 3 :如果想用 pdf 格式显示报表结果,我们还要做以下两件事情:到 http://prdownloads.sourceforge.net/itext/itext-1.3.jar 下载 itext ,然后拷贝到 plugins/org.eclipse.birt.report.engine.emitter.pdf_version/lib 目录下;到 http://dev.conio

SAP:常用的T-code

让人想犯罪 __ 提交于 2020-01-19 09:18:44
SAP:常用的T-code 收藏 如下是搜集的一些T-Code,还没有做进一步分析测试。 ====================================================== 11个模块较常用的一些T-Code,希望对大家有所帮助! http://www.sapforum.net/archiver/?tid-4437.html 大家可以在SAP中查询T-Code,当然前提是你有足够的权限。 具体方法是:使用T-Code:TSTC 进入T-Code表查询。 以下是11个模块较常用的一些T-Code,希望对大家有所帮助! Plant Maintenance (PM) Production Planning BASIS/ABAP Human Resources Sales and Distribution (SD) SAP Office FI Financial Management Material Management (MM) MM configuration transactions Config Related Plant Maintenance (PM) IW32 Change Plant Maintenance Order IW33 Display Plant Maintenance Order IW34 Create Notification

vs2005 Crystal Report制作使用

可紊 提交于 2020-01-18 13:59:08
Crystal Report 制作使用 本文主要划分为以下六部分: 一、 Crystal Report for .NET 的功能 二、 Crystal Report 总体结构 三、 报表数据访问执行模式 四、 报表类型 五、 Crystal Report 设计器的布局 六、 Crystal Report 的具体实例 最近项目接近尾声,应要求总结了一下,为了对在 .net 环境下开发报表的程序员新手一些帮助,同时也为给新人培训做一次文档准备。 相信在大部分的应用程序中报表都是程序员头疼的问题。但是在 .net 环境下包含了功能强大的报表工具 : Crystal Report 。它能很好的与数据库交互,做出各种漂亮的报表和分析图表 . 它能良好地替开发人员排忧解难。如下图: 从 1993 年开始, Crystal Report 就是 Visual Studio 套件中的一部分。目前实际上已成为 Visual Studio.NET 中的报表标准,在 Windows 报表编写领域中居于领先地位,推动着 Web 报表的未来发展。最新的 Visual Studio.NET 以集成开发环境 (IDE) 中整和了 Crystal Report9.0 ,从而增强了 Visual Studio.NET 的开发功能, Crystal Report 为开发人员提供了尽可能的 API 。 一、

报表如何批量导出 pdf

陌路散爱 提交于 2020-01-18 04:56:27
需求说明 报表展现后可以通过工具栏中的导出按钮将当前展现的报表导出成 pdf 文件,但是在实际使用中通常会要求报表不需要展现,直接通过一些操作将报表导出成 pdf 文件,并且往往会要求批量导出成 pdf 文件,下面通过几个示例介绍下报表不展现,如何批量生成 excel 文件。 实现这种需求一般要用到 api 方式,批量生成 excel 文件,按照方式上来分大体上可以分为三类: 一:单表导出单 pdf 多页 二:多表导出单 pdf 多页 三:多表导出多 pdf 文件 单表多页 此种方式通常是报表格式固定,然后根据某个参数对数据过滤,导出 pdf 时需要导出多个参数的数据,并且每个参数的数据放到同一个 pdf 的不同页里,比如本例中按照地区统计订单信息,要求导出时每个地区数据导出到一个 pdf 页中,下面看下这种做法: 报表设计界面不必多说,按照需求设计就行,如下图: 报表中增加一个参数:area,用于接收地区参数,然后在数据集中通过这个参数过滤数据就行。 Api 中用到 jsp 代码如下: <%@ page contentType="text/html;charset=UTF-8" %> <%@ page import="com.raqsoft.report.model.*"%> <%@ page import="com.raqsoft.report.usermodel.*"%> <

Can't Display DataTable in ReportViewer aspx.net

ぐ巨炮叔叔 提交于 2020-01-17 12:25:54
问题 I am having difficulty displaying the contents of a DataTable object in a ReportViewer control. There are no errors, just a blank report viewer being shown on the page. I have looked at the solutions presented in various similar questions found here, here and here - that last one is particularly frustrating as the last comment says "let's continue this discussion in chat" with no answer provided and it is essentially my exact issue. Page code: <div class="panel-body"> <rsweb:ReportViewer ID=

Crystal Report制作使用

懵懂的女人 提交于 2020-01-17 05:24:42
Crystal Report 制作使用 本文主要划分为以下六部分: 一、 Crystal Report for .NET 的功能 二、 Crystal Report 总体结构 三、 报表数据访问执行模式 四、 报表类型 五、 Crystal Report 设计器的布局 六、 Crystal Report 的具体实例 最近项目接近尾声,应要求总结了一下,为了对在 .net 环境下开发报表的程序员新手一些帮助,同时也为给新人培训做一次文档准备。 相信在大部分的应用程序中报表都是程序员头疼的问题。但是在 .net 环境下包含了功能强大的报表工具 : Crystal Report 。它能很好的与数据库交互,做出各种漂亮的报表和分析图表 . 它能良好地替开发人员排忧解难。如下图: 从 1993 年开始, Crystal Report 就是 Visual Studio 套件中的一部分。目前实际上已成为 Visual Studio.NET 中的报表标准,在 Windows 报表编写领域中居于领先地位,推动着 Web 报表的未来发展。最新的 Visual Studio.NET 以集成开发环境 (IDE) 中整和了 Crystal Report9.0 ,从而增强了 Visual Studio.NET 的开发功能, Crystal Report 为开发人员提供了尽可能的 API 。 一、

How to use subreport across multiple reports or create parent report from subreport?

徘徊边缘 提交于 2020-01-16 19:29:19
问题 I have a Crystal Report called MainReport in Visual Studio, which also has a subreport. The contents of the subreport are the header details but now this is required across a couple of other reports. Is there any way to re-use the subreport across other reports or a way to change it from a subreport to being its own parent report? Any help would be great! 回答1: According to the thread save subreport as an individual report from SAP: This option is only available in the full version of Crystal

Crystal Report制作使用

允我心安 提交于 2020-01-16 04:36:29
Crystal Report 制作使用 本文主要划分为以下六部分: 一、 Crystal Report for .NET 的功能 二、 Crystal Report 总体结构 三、 报表数据访问执行模式 四、 报表类型 五、 Crystal Report 设计器的布局 六、 Crystal Report 的具体实例 最近项目接近尾声,应要求总结了一下,为了对在 .net 环境下开发报表的程序员新手一些帮助,同时也为给新人培训做一次文档准备。 相信在大部分的应用程序中报表都是程序员头疼的问题。但是在 .net 环境下包含了功能强大的报表工具 : Crystal Report 。它能很好的与数据库交互,做出各种漂亮的报表和分析图表 . 它能良好地替开发人员排忧解难。如下图: 从 1993 年开始, Crystal Report 就是 Visual Studio 套件中的一部分。目前实际上已成为 Visual Studio.NET 中的报表标准,在 Windows 报表编写领域中居于领先地位,推动着 Web 报表的未来发展。最新的 Visual Studio.NET 以集成开发环境 (IDE) 中整和了 Crystal Report9.0 ,从而增强了 Visual Studio.NET 的开发功能, Crystal Report 为开发人员提供了尽可能的 API 。 一、

Crystal Report制作使用

北战南征 提交于 2020-01-15 09:01:18
Crystal Report 制作使用 本文主要划分为以下六部分: 一、 Crystal Report for .NET 的功能 二、 Crystal Report 总体结构 三、 报表数据访问执行模式 四、 报表类型 五、 Crystal Report 设计器的布局 六、 Crystal Report 的具体实例 最近项目接近尾声,应要求总结了一下,为了对在 .net 环境下开发报表的程序员新手一些帮助,同时也为给新人培训做一次文档准备。 相信在大部分的应用程序中报表都是程序员头疼的问题。但是在 .net 环境下包含了功能强大的报表工具 : Crystal Report 。它能很好的与数据库交互,做出各种漂亮的报表和分析图表 . 它能良好地替开发人员排忧解难。如下图: 从 1993 年开始, Crystal Report 就是 Visual Studio 套件中的一部分。目前实际上已成为 Visual Studio.NET 中的报表标准,在 Windows 报表编写领域中居于领先地位,推动着 Web 报表的未来发展。最新的 Visual Studio.NET 以集成开发环境 (IDE) 中整和了 Crystal Report9.0 ,从而增强了 Visual Studio.NET 的开发功能, Crystal Report 为开发人员提供了尽可能的 API 。 一、