reporting

RDLC Report Column Visibility Problem in Group By

ε祈祈猫儿з 提交于 2019-12-06 15:04:19
I have an rdlc report in asp.net. I have a table in it and I am using group by in that table. But the columns which I make Parent Group or child group has Column Visibility Disabled. Notes Column is in a group. See its visibility option is disabled. How can I hide that column on the basis of a criteria as I can do with the Exam Date column that is not in any group. Please help. I've concluded that it's not possible to do this. 来源: https://stackoverflow.com/questions/5740975/rdlc-report-column-visibility-problem-in-group-by

How to create a tabular report from Azure DevOps that includes work item description?

人盡茶涼 提交于 2019-12-06 14:53:15
We are trying to use PowerBi to build tabular reports from data in Azure DevOps. In this report, we want to display the description field in one of the table's columns. ADO stores the description as HTML. Neither PowerBI or Excel can render this content, but instead show the markup code. I've also looked at pulling this into python and using Dash with no luck. There is an extension for ADO that renders html, but it displays a single record and doesn't work as a table cell renderer. The output I'm looking for is very simple. It is a table (preferably in PowerBI or some other dashboarding tool)

Order documents by most popular in sharepoint content query webpart

谁说胖子不能爱 提交于 2019-12-06 14:43:21
I'd like to order a set of webpages showing inside a content query webpart by 'most viewed' I know sharepoint keeps track of such things but I don't know how to expose this list to the content query web part - can anyone point me in the right direction? Thanks in advance It is true that SharePoint can log user visits to the usage log on disk and the audit log in the content database. But there is no API for issuing report building queries against the data like a query for most viewed pages. You will need to develop or buy: Develop: You could turn on the audit log for your site collection(s)

accessing parameters when writing a scripted BIRT data source in java

你离开我真会死。 提交于 2019-12-06 12:33:01
问题 I am using BIRT reporting with a scripted POJO data source and am having trouble accessing report parameters. I am scripting everything in Java, rather than javascript. The code is below: public class StockDataSetHandler extends ScriptedDataSetEventAdapter { ... @Override public void open(IDataSetInstance dataSet) { count = 0; StockDaoMock mockStockDao = new StockDaoMock(); //The code below works in javascript. How can I do the equivalent //in Java? Where do I get params from? String

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

一个人想着一个人 提交于 2019-12-06 12:30:19
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', select=1), 'title': fields.many2one('res.partner.title','Partner Form'), 'parent_id': fields.many2one(

Export list of all commit details in VSTS / Azure DevOps into file?

给你一囗甜甜゛ 提交于 2019-12-06 12:25:47
问题 I want to export a list of all commits in a repository (date-time, author, comment) into a file (of any format: CSV, XML, JSON, XLS etc.) which I will then analyse in a spreadsheet. I want to compute stats such as: number of commits per author per month size of each commit (number of lines & files changed, size in kB) busiest times of day, busiest days of week, busiest months of year etc. This is for a high-level management report so non-technical managers can understand the size of effort

Dataset with dynamic columns in tablix/matrix

你说的曾经没有我的故事 提交于 2019-12-06 12:00:32
问题 I have a dataset that can come with 5 columns, columns 6, 7, 10, 20, or even 100. At least two are static, the remaining are dynamic (am making a scale according to a table exists in the database). How can I implement this in Reporting Services? How do I specify the field of tablix that the value is dynamic? The end result would be this: | TITLE | ENUNCIATION | GOOD | VERY GOOD | BAD | VERY BAD | ------------------------------------------------------------- | title 1 | question 1 | 5 | 3 | 1

FIrst time writing ASP.NET MVC app- need to tie to SSRS and display reports

北战南征 提交于 2019-12-06 10:02:11
Hey everyone.. This is my first time writing an ASP.NET MVC web app, and it's going good. I have no problems there. What I don't have any experience in is SSRS though. Ultimately I want to be able to render reports on my ASP.NET MVC app. I got the report server installed and running, and it's visible within SQL Server Management Studio. I created a test report (.rdl) via Business Intelligence Development Studio, and published it to my report server. It's now there, I checked. My question is how do I tie that into my main application? Do I have to add a reference in my main application to be

Integrating Pentaho Reporting web frontend with custom Java/JSF application

老子叫甜甜 提交于 2019-12-06 06:08:45
I have the following situation: OTLP database schema with data. Database procedures pump data into denormalized, star-schema with defined dimensions and fact tables. The goal is to build web application, which can do summary and drill-down on those defined data structures. I can build custom web interface, but I would prefer to use existing tools for the reporting part. The resulting application must be written in java and integrated with existing solution based on JSF and Pentaho looks like it's up to the task, but I can't find anywhere, how one would go about this, or whether is this even

Is there a quick way to report database metadata in SQL Server 2005?

旧巷老猫 提交于 2019-12-06 05:27:51
Are there any system stored procs to report the stats and metadata of a database itself in SQL Server 2005? What I need is a quick way to output a list of tables, the size of each table, the number of rows in each table and so on. Stored procs for individual tables and metadata would also be useful. Advice appreciated. ConcernedOfTunbridgeWells Yes, the data dictionary tables will let you do this. The main tables in the data dictionary are sys.objects , sys.columns , sys.indexes , sys.foreign_keys and sys.sql_modules . For an example of a variety of queries that use the system data dictionary