reporting

How to find (and maybe extend) the list of available field names for reports in the OpenERP server sourcecode?

别说谁变了你拦得住时间么 提交于 2019-12-07 20:06:33
问题 I am looking for a reliable way to get names of available data fields when creating or extending OpenOffice/LibreOffice report files. I already do know many field names from the existing reports. I also can lookup the field names in the module definitions. For example in the file addons\base\res\partner\partner.py I find a field list for the partner model: class res_partner(osv.osv): _columns = { 'name': fields.char('Name', size=128, required=True, select=True), 'date': fields.date('Date',

How to get field lists using the OpenERP Report Designer Addon for OpenOffice / LibreOffice

空扰寡人 提交于 2019-12-07 18:01:59
问题 I want to add fields to the reports and use them in python functions and do some coding inside the reports. I am using version 6.0.3 of OpenERP, I keep getting an empty field list. This is what the "add field" command on the addon should look like: I am using the "OpenERP Report Designer" addon for OpenOffice / LibreOffice. The "Add a field" command in the OpenOffice addon does not work for me. It shows an empty field list. I tried in 6.0.3 on a linux and a windows server and also 6.0.2 on a

Using PDI transformation in Pentaho BI server as data source for report parameters

人走茶凉 提交于 2019-12-07 14:32:49
问题 Any advice on how to use PDI transformation as data source for report parameters in BI server's console? I've uploaded the prpt reports to BI server but the I get a message "Error parsing parameter information". The .prpt and .ktr files are both in the same directory. 回答1: Actually, just realized that the issue could be solved by adding Transformation (KTR) as a resource. In this case, one can use the File-Resources menu selection. In the dialog select the transformation you wish to import

Is there any tool to see the queries run against the database?

夙愿已清 提交于 2019-12-07 04:44:27
问题 Is there any tool that will inspect either asp.net or sql server and report all the queries that are run against the database? The reason I ask is I am using Linq for a project and want to double check what its actually doing for each page. Ideally I'd like to view a page in a browser and have a report of all the queries that were run to create that page. I know I can view the SQL it runs for individual queries using debugging/breakpoints, and I know about LinqPad, but I'm afraid Linq is

RDLC Medium Trust

坚强是说给别人听的谎言 提交于 2019-12-07 04:38:21
Does anyone know of a free (for a non-profit group) RDLC reporting tool that will work under medium trust in IIS 7? Our Data Dynamics Reports product is not free, but we did implement special support for working in the restrictive medium trust environments. I don't know if it is tested on IIS7 yet, but I presume the security policy is the same so it should work in any case. If it does not let us know and we will surely get it working as this is a scenario we explicitly wanted to make sure that we provide a great solution for. For more information see the following links: Brief information

Open Source Java Reporting Framework [closed]

北战南征 提交于 2019-12-07 01:57:12
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . i want to create few Reports which picks data from few SQL tables, So instead of creating different report's i want to create (or use

In SQL Reporting Services, how to filter a dataset according to a parameter?

只愿长相守 提交于 2019-12-07 01:04:40
问题 I've got an unfiltered dataset to deal with so as to generate a report (SQL Server 2005 btw) . Let's say I've got a Name column, and I'd want to add a parameter to my report, so as to select only the names containing some characters. Does one know how to deal with these filters? I've tried with no luck these: =Fields!Name.Value Like =Parameters!FilterName.Value =Fields!Name.Value = = "%" + Parameters!FilterName.Value + "%" I'd like to be able to get the names 'foo' and 'foobar', if I give the

Make PDF reports in Perl?

拟墨画扇 提交于 2019-12-06 18:34:58
问题 All the PDF libraries for Perl seem a bit barbaric -- stuck in the 1980's. You have to specify PostScript points to do layout. Java has JasperReports, Ruby has Prawn, and Python has ReportLab. Is there a non-extinct library/module that will let me make a nice looking PDF in less than a week of coding? (I'm a little frustrated by PDF::API2, PDF::Table, etc.) I don't want to generate HTML and convert it. Perl is ideal for reporting, but the main report file format is not available in a usable

Py.Test : Reporting and HTML output

℡╲_俬逩灬. 提交于 2019-12-06 18:27:29
问题 This is not a technical question at all really. However, I can not locate my .HTML report that is supposed to be generated using: py.test --cov-report html pytest/01_smoke.py I thought for sure it would place it in the parent location, or the test script location. Does neither and I have not been able to locate. So I am thinking it is not being generated at all? 回答1: I think you also need to specify the directory/file you want coverage for like py.test --cov=MYPKG --cov-report=html after

Report Viewer not showing report in MVC aspx view

一世执手 提交于 2019-12-06 15:48:41
From the couple of days I am trying to create rdlc report in MVC 4. I just make a test Controller and ReportTest its action that return view. when I hit this url /test/ReportTest report page is opened but only header page is displayed as attached. when I try to observe this page behaviour in firebug it firebug shows a error message. [HttpGet] public ViewResult ReportTest() { return View("MyReports"); } this only happen when I am trying through controller. If I place report files out side the views folder and access this page its working fine as desired. Please help me out to resolve this issue