You can view a report and view the dataset and layout on a computer that does not have Microsoft Dynamics NAV installed. To do this, you must have Visual Studio installed and you must export the report dataset from Microsoft Dynamics NAV as an .xml file and export the report layout .rdlc file from Visual Studio Report Designer.

Important
The dataset .xml file that you export contains actual data from the report. Do not share this file if you do not want to share actual database data.

About This Walkthrough

This walkthrough illustrates the following tasks:

  • Exporting the report dataset as an .xml file.
  • Copying the report layout .rdlc file.
  • Running the report by using Visual Studio.

Prerequisites

To complete this walkthrough, you will need:

  • One computer with the following:
    • Microsoft Dynamics NAV 2013 with a developer license.
    • CRONUS International Ltd. demonstration database.
    • Microsoft Visual Studio 2010 SP1.
  • A second computer with Microsoft Visual Studio 2010 SP1.

Story

Viktor is a Microsoft Certified Partner working for CRONUS International. He is working on some enhancements to the Customer - Top 10 List report, but during his development phase, he has encountered some problems. Viktor wants to send the report to Microsoft Support to help him troubleshoot the problems. The Microsoft Support engineer wants to be able to view the report and report data offline instead of on a computer that has Microsoft Dynamics NAV installed. Viktor saves the report dataset and the report layout and sends them to the Microsoft Support engineer, who runs the report on his computer by using Visual Studio.

Saving the report dataset and layout

First, Viktor exports the report dataset to an .xml file.

To export the report dataset to an .xml file

  1. On the computer with Microsoft Dynamics NAV installed, open the Microsoft Dynamics NAV Windows client.

  2. In the Search box, enter Customer - Top 10 List, and then choose the related link.

  3. On the request page for the Customer - Top 10 List report, on the Application menu Application Menu button in menu bar, choose Help, and then choose About This Page to activate the About This Report feature. For more information, see How to: View and Export the Dataset for a Report.

  4. Close the About This Page page.

  5. On the request page for the Customer - Top 10 List report, choose Preview to open the Customer - Top 10 List report in Report Viewer.

  6. On the report preview, on the Application menu Application Menu button in menu bar, choose Help, and then choose About This Report to display the report dataset.

  7. On the About This Report page, choose Export as XML.

  8. In the Export File dialog box, choose Save.

    Export File dialog box. Choose the Save button.
  9. In the Export File dialog box, navigate to your Desktop, enter Dataset for the file name, set the Save as type field to XML (*.xml), and then choose Save.

Next, Viktor must save the report layout as an .rdlc file.

To copy the report layout .rdlc file

  1. In the development environment, choose Tools, and then choose Object Designer.

  2. In Object Designer, choose Report, select report 111, Customer - Top 10 List, and then choose Design.

  3. On the View menu, choose Layout to open the report layout in Visual Studio.

    Note
    If you have not opened this report in Microsoft Dynamics NAV 2013, then in the dialog box, choose the OK button to convert the report to RDLC 2008 format.
  4. In Visual Studio, in Solution Explorer, select Report.rdlc, and then in the Properties window, note the path where the Report.rdlc file is located.

    Visual Studio 2010 Solution Explorer, Properties
    Tip
    If the Properties window is not visible, then on the View menu, choose Properties.
  5. Copy the Report.rdlc file from the location in the Properties window to your Desktop.

Viktor sends both the Dataset.xml file and the Report.rdlc file to the Microsoft Support engineer who is helping him troubleshoot the report.

Running the Report Offline

The Microsoft Support engineer has received the Dataset.xml file and the Report.rdlc file from Viktor and now runs the report on his computer by using Visual Studio.

Note
If the report references external assemblies, then you must install the assemblies in the global assembly cache on the computer on which you want to run the report. For more information, see EnableExternalAssemblies Property and Extending Microsoft Dynamics NAV Using Microsoft .NET Framework Interoperability,

To run the report by using Visual Studio

  1. Copy the Dataset.xml file and Report.rdlc file from the first computer, which has Microsoft Dynamics NAV installed, to your desktop on the second computer, which does not have Microsoft Dynamics NAV installed.

  2. On the second computer, open Visual Studio.

  3. In Visual Studio, in the File menu, choose New, and then choose Project.

  4. In the New Project window, under Installed Templates, expand Visual C#, choose Windows, and then choose Windows Forms Application.

    Visual Studio 2010, New Visual C# Project
    Tip
    If Visual C# is not listed under Installed Templates, then you must install the Visual C# feature. To do this, in Control Panel, choose Programs, choose Uninstall a program, select your version of Microsoft Visual Studio, and then choose Uninstall/Change. In the setup wizard, follow the instructions to add or remove features, and then choose the Visual C# feature.
  5. In the Name field, enter OfflineReport, and then choose the OK button to create the solution.

    Visual Studio 2010, New Visual C# Project, Name
  6. In Solution Explorer, right-click the OfflineReport project, choose Add, and then choose Existing Item.

    Visual Studio 2010, Add Existing to project
  7. In the Add Existing Item dialog box, navigate to your Desktop, set the file type to All Files (*.*), select the Dataset.xml file and the Report.rdlc file, and then choose Add.

    Add Existing Item dialog box, file type All Files
  8. In Solution Explorer, under OfflineReport, select Dataset.xml. In the Properties window, in the Copy to Output Directory field, choose Copy Always from the drop-down list.

    Tip
    If the Properties window is not visible, then on the View menu, choose Properties.
  9. In the Toolbox window, under Reporting, drag a new Report Viewer control to Form1.

    Visual Studio 2010, Report Viewer control
    Tip
    If the Toolbox window is not visible, then on the View menu, choose Toolbox.
    Note
    You may need to resize the report viewer control or the form.
  10. Select the report viewer control, and then in the Properties window, under Misc, expand Local Report, and then set the ReportEmbeddedResource property, to OfflineReport.Report.rdlc.

    Visual Studio, ReportEmbeddedResource property
    Note
    If your report includes external images, then in the Properties window of the report viewer control, you must set the EnableExternalImages property to True.
    Note
    If your report includes hyperlinks, then in the Properties window of the report viewer control, you must set the EnableHyperlinks property to True. For examples of creating reports that include hyperlinks, see Walkthrough: Creating a Link from a Report to a Report and Walkthrough: Creating a Link from a Report to a Page.
  11. In Solution Explorer, select the OfflineReport project, and on the shortcut menu, choose Add, and then choose Class.

    Visual Studio 2010, Add a Class to a solution
  12. In the Add New Item window, under Installed Templates, choose Visual C# Items, and then choose Class.

    Visual Studio, Add a Class, select Visual C# class
  13. In the Name field, enter CreateDataSource.cs, and then choose Add.

    Visual Studio, Add Class to project, enter name
  14. In the CreateDataSource.cs tab, replace the code with the following.

      Copy Code
    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Linq;
    using System.Text;
    namespace OfflineReport
    {
    	public static class CreateDataSource
    	{
    		public static DataTable CreateTable()
    		{
    			DataSet dataSet = new DataSet();
    			dataSet.ReadXml("Dataset.xml");
    			return dataSet.Tables[0];
    	}
    }
    }
    
  15. On the File menu, choose Save CreateDataSource.cs.

  16. Choose the Form1.cs [Design] tab, and then on the View menu, choose Code.

  17. In the Form1.cs tab, replace the code with the following.

      Copy Code
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using Microsoft.Reporting.WinForms; 
    namespace OfflineReport
    {
    	public partial class Form1 : Form
    	{
    		public Form1()
    		{
    			InitializeComponent();
    	}
    		private void Form1_Load(object sender, EventArgs e)
    		{
    			this.reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("DataSet_Result", CreateDataSource.CreateTable()));
    			this.reportViewer1.RefreshReport();
    	}
    }
    }
    
  18. On the Build menu, choose Build Solution. The solution builds successfully.

  19. On the Debug menu, choose Start Debugging to view the report in the report viewer control.

    Visual Studio 2010, Debug menu, Start Debugging
  20. To make changes to the report layout, in Solution Explorer, right-click Report.rdlc, and then choose Open.

Tip
Now that you have created the OfflineReport solution, to run other reports from Visual Studio, you only need to replace the Dataset.xml and Report.rdlc files.

See Also