Hi admins, is it necessary to have the Report Server installed to display reports from asp .net web sites? In the marketing gumph this did not appear to be the case.
If not can you point me at the doco for displaying without the Report Server please.

Hi,
i'm try to pass two parameter to my report, in WPF/MVVM scenario, but the report can't see(Missing or invalid parameter value.). To be sure that report have the right parameters, i've put a texbox(into report) and set his value to the parameter's value. When i refresh report, "Missing or invalid parameter value" disappare, the textbox value have the correct ID but report no fetch record from Datasource.
This is my code:
XAML:
<tr:ReportViewer telerik:StyleManager.Theme="Material" IsEnabled="{Binding ReportEnabled}"
ReportSource="{Binding FormInternalReport_Source, Mode=TwoWay}"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.ColumnSpan="2" />
ViewModel:
private ReportSource _FormInternalReport_Source;
public ReportSource FormInternalReport_Source
{
get { return _FormInternalReport_Source; }
set
{
Set<ReportSource>(() => this.FormInternalReport_Source, ref _FormInternalReport_Source, value);
}
}
private void ExecuteInsert(object parameter)
{
//Report are enable only when Insert Button is clicked
ReportEnabled = true;
FormInternalReport_Source = new InstanceReportSource { ReportDocument = new Form_Internal(Report_ID) };
FormInternalReport_Source.Parameters.Add(new Telerik.Reporting.Parameter(new Telerik.Reporting.Parameter("ID", Report_ID) ));
FormInternalReport_Source.Parameters.Add(new Telerik.Reporting.Parameter(new Telerik.Reporting.Parameter("LanguageID", 1) ));
try
{
RaisePropertyChanged("FormInternalReport_Source");
}
catch(Exception ex)
{ }
}
Can someone help me?
Thanks.
Hi,
We are getting the below error when trying to view any telerik report on our hosted webpages.
Error registering the viewer with the service.
An error has occurred.
The process cannot access the file '\\sfs-iisfile\IIS Content\sfs.portal.webapp\reports-cache\509e4f1d\11.2.17.913\LCT\value.dat' because it is being used by another process.
We have a load Balanced environment and this error seems to happen sporadically, it happened a few months ago and seemed to correct itself but has now happened again.
Has anyone else experienced this issue and could help with possible fixes or suggestions?
Thanks in Advance,
Adam

Hi, I want to do a report that have multiple master-details,
my environment is Winform , Reporting R1 2017, UI for WinForms R1 2017 SP1,
what I supposed is like attach file 1.png,
there have group header to place master data, and a table to show detail data,
and will print multiple page for multiple master-details data.
I created data class and also a method that return the datasource (return type is List<RptDataMaster>):
public class RptDataMaster{ public string WaveNumber{get;set;} public string CustomerNumber{get;set;} public string OrderNumber {get;set;} public List<RptDataDetail> list{get;set;} public RptDataMaster() { this.list=new List<RptDataDetail>(); }}public class RptDataDetail{ public string ItemNumber{get;set;} public string ItemName{get;set;} public int Qty{get;set;}}
but next, I have no idea how to grouping them up at report designer,
should I add two objectDataSource (bind to RptDataMaster & RptDataDetail) or something?
Please give me some suggestion, thanks!

Hello,
In reports, that I need, there are some tables that should be displayed (in interactive mode) in one page but printed in several pages. To prevent page split in the interactive mode I try to make one big table with subtables (I merge cells and then insert panel+table) and then injust KeepTogether property to control the page break places. However, sometimes it is not work as I suppose, and also it doesn't allow me to print small tables (that fit in one page) on different pages.
Are there better solutions for my need? Is there any way I can clearly define the strict page break place?
Thanks!
Reports are made in standalone designer, and then shown in html5 report viewer.

How to Set DataSource to a Report Parameter in Code
Hi, I am trying to set a datasource to a report parameter by code, but i did not find anything, so I hope someone help me with this problem, I know that I can set a DataSource to a TextBox or a Table but not a report parameter, so...
Thanks for your attention!