report

Report Builder custom method of assembly returns “#Error”

旧巷老猫 提交于 2019-12-25 05:28:11
问题 I am currently trying to add an assembly into report builder 3.0 to execute a method and return the result: But I always get "#Error" in the preview. Even whe the method is that simple: public static string Test() { return "test"; } Reference is set the following: Expression is: =TestNamespace.TestClass.Test() The assembly is registered in GAC and it seems that the method is being checked for availableness. Elsewise I get a different error. 回答1: I finally fixed it. Important is to set the

Averages greater than 95 percentile in jmeter

主宰稳场 提交于 2019-12-25 03:59:09
问题 my average response time is coming greater than the 99 percentile( in JMeter). 回答1: So what? My too. This is normal situation when you have: low number of samplers with high response time and high number of samplers with low response time In above setup I used 1 Dummy Sampler with 1000 milliseconds response time and 100 Dummy Samplers with 1 millisecond response time resulting in average response time of 11 ms and 99% of 4 ms. More information: JMeter Glossary Percentile Arithmetic Mean 回答2:

Report formatting not working in Odoo 8 Qweb Reports

别说谁变了你拦得住时间么 提交于 2019-12-25 03:38:07
问题 All the default reports and the new reports that I am generating are being printed towards the left of the page. This only happens when the report is generated in PDF format. In HTML format the report is displayed fine. I did some research and found that downgrading the wkhtmltox to version 0.21.1 would solve this problem. I did that, but the problem still persists. 回答1: There is one small configuration Go to settings --> Technical --> Parameters --> System Parameters --> Click on Create and

Error assigning pass through query to report recordsource in VBA code

坚强是说给别人听的谎言 提交于 2019-12-25 02:56:16
问题 I have the following code : Private Sub Report_Open(Cancel As Integer) On Error GoTo ErrorHandler Dim isPTQueryExists As Integer isPTQueryExists = IsQuery("myTestQuery") If isPTQueryExists = -1 Then Set qdf = CurrentDb.QueryDefs("myTestQuery") qdf.SQL ="my SQL query" Me.RecordSource = "myTestQuery" End If Else Dim DatabaseName As String Dim ServerName As String ServerName = "XXXX" DatabaseName = "XXXX" Set qdf = CurrentDb.CreateQueryDef("myTestQuery") strConnectionString = "XXXX" qdf.Connect

SQL Server Report Builder: Hiding Tablix Rows based on value in Subreport

∥☆過路亽.° 提交于 2019-12-25 02:47:55
问题 I am not too familiar with SQL Server Report Builder and have had prior experience with Crystal Reports, whereby you could declare a variable in the header of the report, set that variable using a sub-report, and then reference that variable in the main report, so I am having issues adapting to SQL Server Report Builder. I have a tablix that displays data. In one of the tablix columns I've embedded a sub-report. I would like to hide the tablix row based upon a value surfaced by the sub-report

SQL Server Report Builder: Hiding Tablix Rows based on value in Subreport

南楼画角 提交于 2019-12-25 02:47:05
问题 I am not too familiar with SQL Server Report Builder and have had prior experience with Crystal Reports, whereby you could declare a variable in the header of the report, set that variable using a sub-report, and then reference that variable in the main report, so I am having issues adapting to SQL Server Report Builder. I have a tablix that displays data. In one of the tablix columns I've embedded a sub-report. I would like to hide the tablix row based upon a value surfaced by the sub-report

Crystal Report create strange PDF format on server

烂漫一生 提交于 2019-12-25 00:24:31
问题 I am trying to export a crystal report into PDF format using the below code. Report.ExportToDisk(ExportFormatType.PortableDocFormat, _ System.AppDomain.CurrentDomain.BaseDirectory() & sPDF_FileName) The format of the PDF is normal, like an A4 size on local host , but when creating the file on server, the format is entirely different. The report or the page is sliced into small pieces and a single page is converted into multiple pages. I appreciate your help. Thank you. 来源: https:/

Crystal reports setting for Language

时间秒杀一切 提交于 2019-12-24 20:24:55
问题 I have a report that I run and comes up with different characters based on the {race} field. For example if {race} = Chinese in the report viewer it translates "Chinese: in Chinese characters and for any other race it does the same. Is this a setting in Crystal reports that I can change this to. Also if i run the report on a different PC with Crystal runs fine. What could be the setting that is causing this in Crystal Reports XI Thanks in advance 回答1: Here are the steps: Click Start > Control

Facebook Marketing API PHP SDK - “Filtering field delivery_info is invalid”

删除回忆录丶 提交于 2019-12-24 19:28:16
问题 I'm attempting to make a PHP-application that generates Facebook ad reports for a company, using the Facebook PHP Ads SDK. I'm following the Marketing API QuickStart that essentially generates code for you. I have all access I need to reach the company's ad account ID. (I'm not showing the token- and ID-variables, unless absolutely necessary. If so, tell me) . require __DIR__ . '/vendor/autoload.php'; use FacebookAds\Object\AdAccount; use FacebookAds\Object\AdsInsights; use FacebookAds\Api;

Sorting a grouped report

牧云@^-^@ 提交于 2019-12-24 17:10:07
问题 My schema looks a bit like this: SEQ GROUP1 GROUP2 GROUP3 VALUE Where SEQ is roughly equivalent to the row number -- it's actually sort order, from an external table -- and the GROUPx fields delineate the data further. So, for example: SEQ GROUP1 GROUP2 GROUP3 VALUE ---- ------- ------- ------- ------ 1 A A A 123 2 A A A 456 3 A B C foo 5 X Y Z bar 4 A B D baz I would like this data grouped in this hierarchy, but ordered by SEQ . So, the above data would produce a report like: A A A 123 456 B