Telerik Forums
Reporting Forum
0 answers
584 views

In a very few specific places in the product my company has built, we are using Telerik Reports in C#.

Report is trying to reach a stored procedure with 2 params: @languageCode and @invoicePaymentReceiptID

Creating a PDF Report however is giving me the below error:

ERROR

Value cannot be null.
Parameter name: type

STACK TRACE

   at System.Activator.CreateInstance(Type type, Boolean nonPublic)
   at System.Activator.CreateInstance(Type type)
   at Telerik.Reporting.Processing.TypeReportDocumentResolver.Resolve(IProcessingContext context, TypeReportSource rs)

DLL VERSION

Telerik.Reporting, Version=9.1.15.731, Culture=neutral, PublicKeyToken=a9d7983dfcc261be

CODE

 Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
 System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
 Telerik.Reporting.TypeReportSource typeReportSource = new Telerik.Reporting.TypeReportSource();
 typeReportSource.TypeName = frmR.reportName;
 typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("languageCode", frmMain.language));
 typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("invoicePaymentReceiptID", 20421));
 //typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("reportID", tsbReportList.ComboBox.SelectedValue));
 Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", typeReportSource, deviceInfo);

 

It hits in the last line, trying to create the PDF report. 
Any ideas on the topic would be much appreciated.

Thank you.

 

Konstantinos
Top achievements
Rank 1
 asked on 19 Jun 2020
1 answer
1.2K+ views

Hi!

I'm not sure if this is the right place to post this. I'm trying to figure out how to implement custom user functions for use with the reporting server. I was successfully able to implement custom aggregate functions as per this documentation: https://docs.telerik.com/reporting/expressions-user-aggregate-functions

However, when attempting to implement custom functions using this documentation, I cannot get it to work: https://docs.telerik.com/reporting/expressions-user-functions

The functions implemented in this way show up for use in the standalone report designer, but when using them they return an error: "function not defined in current scope"

Am I missing something obvious? Any help would be appreciated! 

Thanks

     

Todor
Telerik team
 answered on 19 Jun 2020
1 answer
96 views

Hello,

I am currently working on a project that requires me to generate a report then turn it into a pdf and send it in a email. I currently understand how to generate a report for a report viewer using uriReportSource, but I don't understand how to generate the report in the code behind then turn it into a pdf.

Todor
Telerik team
 answered on 18 Jun 2020
1 answer
192 views

How to localize Rich Text Editor component displayed by the Send Mail Message Dialog in the HTML5 Telerik Report Viewer?

 

 

Todor
Telerik team
 answered on 17 Jun 2020
3 answers
1.0K+ views
HI,

I want to share my experience with binding an IEnumerable<String> to a report.

Normally, you bind a collection of complex objects with public properties:
public sealed class MyType
{
  public String FirstName { get; set; }
  public String LastName { get; set; }
}
 
 
report.DataSource = new List<MyType>();

Then, in a report's textbox, you specify this expression to load the data from MyType object:
= Fields.FirstName + " " + Fields.LastName



But what if you want to just bind a list of strings without creating redundant wrapper types?
report.DataSource = new List<String>();

You can't just set "= Fields" expression to a textbox, it will produce "Incorrect use of Fields" exception. But you can set following expression and it will work (RawData is of type Object, so I guess it calls ToString() method internally):
= ReportItem.DataObject.RawData
Vic
Top achievements
Rank 2
 answered on 17 Jun 2020
1 answer
157 views

Hi all,

We are using Report Web Designer. We have implemented custom storage (IDefinitionStorage). We have implemented SaveDefinition method where it saves the edited report in a custom way.

There can be some validations and save can fail. For this I am just throwing a new Exception.  

The question is, which kind of exceptions needs to be thrown so that the message of exception shows in a report designer?

In an attachment you can see that the error message is showing in a general way, and it doesn't show my custom message.

 

Thanks,

Todor
Telerik team
 answered on 17 Jun 2020
2 answers
338 views

Hello,

I'm trying to test Telerik Report with .NET Core 3.1 and object data source.

The report is working correctly when running from Visual Studio but when I publish and put it in IIS, I see the below error in every binding.
"An error has occurred while processing TextBox 'textBox15': The expression contains object 'OpeningBalanceDate' that is not defined in the current context"

I'm using the report designer and the assemblies that has the object datasource are netstandard2.0

What could be the issue?

Katia
Telerik team
 answered on 17 Jun 2020
1 answer
1.5K+ views

I have Rest Service (ASP.Net Web Application-->Empty-->check MVC)

Result: successed (pictrure: 1.jpg)

I have project Angular and call Rest Service

<tr-viewer [containerStyle]="viewerContainerStyle"
[serviceUrl]="'http://localhost:56342/api/reports'"
[viewMode]="'INTERACTIVE'"
[scaleMode]="'SPECIFIC'"
[scale]="1.0">
</tr-viewer>

Error (picture: 2.jpg)

Error loading the report viewer's templates. 

 

Bob
Top achievements
Rank 2
Veteran
Iron
 answered on 16 Jun 2020
15 answers
1.6K+ views
I have a table that has a column that may or not be visible. When it isn't visible I then need to adjust the proceeding 2 columns, one to put in the now invisible column's space and the second to increase its width. I have been able to get the column to be invisible via formatting but am not sure how to move and adjust the other columns. I had the same issue with rows and had to create a table for each row and keep track of the visibility and location of each row myself.
Daniel
Top achievements
Rank 1
 answered on 15 Jun 2020
3 answers
175 views
We have 2020 R2. I'm trying to implement a ReportSource class but when I try to implement the required Clone method VS 2019 gives me the error "no suitable method found to override". What's going on?
Todor
Telerik team
 answered on 15 Jun 2020
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?