report

Why does my Odoo 9 custom Qweb report with CSS is not working?

谁说我不能喝 提交于 2020-01-07 04:18:07
问题 I'm creating a new report on Odoo 9 which uses css styles in order to position text over a background image. The image is in background and occupies the full A4 page without any margins. In html, it's working fine. However, when I print the report to PDF, I have blank margins at left and right, and the text goes below the background image. It seems that the CSS rules are not applied. Do you find any solution for making it working in PDF? Here is my report: <template id="sub_proposal"> <style

Group more than one columns in rdlc report with multilevel grouping

☆樱花仙子☆ 提交于 2020-01-07 02:29:10
问题 I have a report where I want to display data obtained by a stored procedure which returns single table. Columns returned from stored procedure Client #, Client Name, Client Phone # Project #, Project Description Test #, Test Name, Test Description Container #, Container Description, Container Parameter Relationship between tables Client - Project 1-N(one to many) Project - Test 1-N(one to many) Test - Container 1-N(one to many) Desired format to be displayed Client # : XYZ Client Name :

Automate collection of data from outlook .msg files to excel field

自古美人都是妖i 提交于 2020-01-06 18:09:29
问题 My firewall sends me a notifcation to my email every time a policy is violated. I have about 2500 emails in .msg format that I want to put into one excel document. Basically I am looking for a way to automate processing each .msg file and putting it on a new line in an excel document. All 2500+ .msg files are in a single folder. I understand that .msg files hold binary data, and thats ok. I can clean up the excel document once it is created. Thanks, Aaron 回答1: Take a look at Outlook MSG file

Automate collection of data from outlook .msg files to excel field

最后都变了- 提交于 2020-01-06 18:08:13
问题 My firewall sends me a notifcation to my email every time a policy is violated. I have about 2500 emails in .msg format that I want to put into one excel document. Basically I am looking for a way to automate processing each .msg file and putting it on a new line in an excel document. All 2500+ .msg files are in a single folder. I understand that .msg files hold binary data, and thats ok. I can clean up the excel document once it is created. Thanks, Aaron 回答1: Take a look at Outlook MSG file

Display data in crystal report in column

左心房为你撑大大i 提交于 2020-01-06 15:42:41
问题 I want to display crystal report in column pattern. I have successfully retrieved the data from student table (with a stored procedure). but want to display in this pattern Student Name | Student Name First Student Name | Second Student Name ThirdStudent Name | FourthStudent Name please tell me how can i do this. 回答1: This can be done in a few steps, this will only work if you don't need to display other fields for each student. Step 1 - Sort the data by the name you want to show on two

Eclipse Birt - Set style cell table dynamically with Event Handler

流过昼夜 提交于 2020-01-06 14:58:13
问题 I have Birt table in a report and i want to create a handler class that change the style color of the cell in the table dynamically if the cell contains the max of the column. I try this for first step and i hooked the class to the row of the table report. public class RowMinMax implements IRowEventHandler { public void onCreate(IRowInstance rowInstance, IReportContext reportContext) { double max=0; IRowData rowData = rowInstance.getRowData(); double cellValue = (double) rowData

How to get crystal reports parameter names with JAVA

断了今生、忘了曾经 提交于 2020-01-06 08:19:06
问题 I have to create reports dinamically in my Java App. I have a CrystalReport's (.rpt) collection so it depends which rpt you select. When you select a report I have to create a new Window with requeried parameters from "file.rpt", so I need the parameters names to decide what kind of parameters user should to complete. I was looking in forums and I couldn't find anything. Thanks! 回答1: Try this! DatabaseController dbController = reportClientDocument.getDatabaseController(); Tables tables =

is it possible to open a report from c# program in edit/run mode

只愿长相守 提交于 2020-01-05 09:03:15
问题 I wanna show my reports in reportviewer control in visual studio and open them in edit/run mode in report builder by clicking a button I dont know how to open report builder from my program I have a report server thanks any help 回答1: WebBrowser wb = new WebBrowser(); wb.Navigate("http://localhost/ReportServer/ReportBuilder/ReportBuilder_3_0_0_0.application?/Reports/ProductsReport"); where Reports/ProductsReport is the path to my report see this 回答2: If I'm understanding your question

is it possible to open a report from c# program in edit/run mode

≯℡__Kan透↙ 提交于 2020-01-05 09:02:27
问题 I wanna show my reports in reportviewer control in visual studio and open them in edit/run mode in report builder by clicking a button I dont know how to open report builder from my program I have a report server thanks any help 回答1: WebBrowser wb = new WebBrowser(); wb.Navigate("http://localhost/ReportServer/ReportBuilder/ReportBuilder_3_0_0_0.application?/Reports/ProductsReport"); where Reports/ProductsReport is the path to my report see this 回答2: If I'm understanding your question

Access:How can I generate a report of a recordset?

你。 提交于 2020-01-05 08:42:50
问题 How can I generate a report in access with the data from a recordset (instead of a query or table). I have updates to the recordset that also must be shown in the report. 回答1: From Access Web you can use the "name" property of a recordset. You resulting code would look something like this: In the report Private Sub Report_Open(Cancel As Integer) Me.RecordSource = gMyRecordSet.Name End Sub In the calling object (module, form, etc.) Public gMyRecordSet As Recordset '... Public Sub callMyReport(