report

How to make RDLC report two column

谁说胖子不能爱 提交于 2019-12-13 01:37:16
问题 I have a simple report which is supposed to be used for printing stickers. The sticker paper is A4 size and it has two columns. I successfully managed to print data to left column. I also want to print data to right column too. My current report looks like this : [Title] [NameLastName] [Address] How can I make my report to fill data to two columns? Thanks. EDIT : I have generated another column as suggested in other questions. But the result is still one column, Can anyone tell me the next

Crystal reports - running total for specific groups

戏子无情 提交于 2019-12-13 01:28:55
问题 I have 4 groups and I only wanted to have running totals for 2 of them and show the total after the second group. Is there a way to do this? Group1 DetailsA records... Group2 DetailsA records... TOTAL - SUM(records) Group3 DetailsA records... Group4 DetailsA records.... 回答1: There are a couple of ways of doing this: (1) Set up a running total to sum the appropriate field - add it to a group footing section which is suppressed where the group is not group2. or (2) Add a higher level of

How to edit Power BI Desktop document parameters or data sources programmatically with C#?

你。 提交于 2019-12-13 00:31:45
问题 I have a report template which is built in Power BI Desktop and is saved as .pbix or .pbit file. This template uses DirectQuery SQL database as data source, whereas server address and database name are extracted to parameters. There is also a parameter which holds a ReportId , which is used in queries. I also have a C# application, which is supposed to generate Power BI Desktop reports from this template. How can create a report with specific parameters programmatically? Something like Power

Cognos 8 API Integration with asp.net

笑着哭i 提交于 2019-12-13 00:08:09
问题 I wanted to integrate cognos 8 and fetch the reports in excel/xml/csv format from cognos server. I don't have much knowledge about cognos, so can you provide me some pointers to start this process. Right now, i'm accessing the Cognos 8 server using IBM's sandbox server, is it possible to use this server as a testing interface? can you also provide me some documentation/link to get more information about cognos 8? 回答1: I suggest taking the easy way and fetching reports (or part of reports)

how to add dynamic empty rows in table with RML code?

我的梦境 提交于 2019-12-12 23:44:01
问题 How can i add empty blank rows in purchase report? and dont know if blank_line is executing perfectly. i followed this link [Openerp purchase report][1] [1]: http://forum.openerp.com/forum/topic8508.html code: <section> <para style="terp_default_8">[[ repeatIn(o.order_line,'line') ]][[line_no() ]]</para> <blockTable colWidths="20.0,100.0,150.0,80.0,50.0,20.0,60.0,50.0" style="Table_Order_Pur_line_Content"> <tr>[[ blank_line(10) ]]<!--[[ setTag('para','para') ]] --> <td> <para style="terp

Oracle Forms and Reports : REP-51002

老子叫甜甜 提交于 2019-12-12 20:26:13
问题 I try to call a report from a form in Oracle Forms and Reports, but I get the following error : "REP-51002: Echec de liaison avec le serveur Reports Server repsrvr" Anyone has an idea what could be the reason of this ? I need your help. Thank you in advance. 回答1: I have found the solution (finally !) .. for those who may encounter the same problem : 1) Search the file rwnetwork.conf 2) Change the lines : <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="5"/> <!--namingService

SSRS - Auto Refresh of the Data Set Fields

混江龙づ霸主 提交于 2019-12-12 16:27:38
问题 We have about 90 Report Builder Reports built by power users. These reports are built off the 20 odd Base reporting tables. Once in a while we add new fields to these reporting tables. The challenge here is to automatically refresh the Datasets in Report Builder (SSRS) without having to go through each report to manually refresh data on the data set. Since SSRS processes these reports with FMTONLY ON is there a way to automate this process dynamically. Thanks 回答1: So, I think you should use

How to generate JUnit test reports on android for jenkins

别说谁变了你拦得住时间么 提交于 2019-12-12 10:37:42
问题 I'am trying to make use of the "Publish JUnit test result report" in Jenkins, but can't get it to work for my android test project. The setup of my android test project in Jenkins is based on this guide: https://wiki.jenkins-ci.org/display/JENKINS/Building+an+Android+app+and+test+project I hope someone could post an easy step by step guide on how to get the JUnit test result reports out of the test run to being able to use "Publish JUnit test result report". Would like to use this feature

Update datasouce in RDLC report

ぐ巨炮叔叔 提交于 2019-12-12 07:28:24
问题 I am using SQL views to pass data to RDLC report. Now If I add a column to SQL view, How can I get this newly added column in RDLC report. For now, I have to delete RDLC dataset and create new one every time which is not feasible at all. Hope someone have better way of doing this. 回答1: You can open your report in any XML editor, locate your dataset and add more columns (of desired type) in Fields section. For example: <Field Name="NewColumnName"> <DataField>NewColumnName</DataField> <rd

Feed RDLC (Local) report report from List (Entity FrameWork)

你离开我真会死。 提交于 2019-12-12 07:16:05
问题 I got myself a BiningList Of student (Entity Framework created class). I just want to feed my RDLC report from that instead of using DataSet or stored procedures. This class contains multiple properties like : string Name; string FamilyName; string Mid; DateTime Birth; ... Any one can help me with that? 回答1: Option 1 - Using designer Open ' Add New Item ' window by pressing Ctrl + Shift + A or from ' Project ' menu choose ' Add New Item ... '. From the window, choose Report Wizard In ' Report