Walkthrough: Creating a Link from a Report to a Report

This walkthrough illustrates how to set up a report to include a link from the Customer - Top 10 List report to the Customer - Detail Trial Bal. report. When you run the Customer - Top 10 List report in preview mode and show balance data, you can choose either a value in the Balance (LCY) column or a section of the pie chart to view detailed balance information. By including this functionality, you now have a dynamic report that enables you to drill down into data.

About This Walkthrough

This walkthrough illustrates the following tasks:

  • Enabling hyperlinks on a report.

  • Adding a link from the Balance text box on the report to another report.

  • Formatting the Balance text box to indicate that it is a link.

  • Adding a link from the pie chart to another report.

  • Running the modified report.

Prerequisites

To complete this walkthrough, you will need:

  • Microsoft Dynamics NAV 2013 with a developer license.

  • The CRONUS International Ltd. demo data company.

  • Visual Studio. For more information about versions of Visual Studio that you can use, see System Requirements for Microsoft Dynamics NAV 2013. This walkthrough uses Visual Studio 2010.

Before you can add a link from a report to another report, you must enable hyperlinks on the report. For more information, see EnableHyperlinks Property.

  1. In the Microsoft Dynamics NAV 2013 Development Environment, on the Tools menu, choose Object Designer.

  2. In Object Designer, choose Report, select report 111, the Customer - Top 10 List report, and then choose Design. The Report Dataset Designer window opens.

  3. In Report Dataset Designer, select an empty row.

  4. On the View menu, choose Properties.

  5. In the Report - Properties window, in the EnableHyperlinks field, set the Value field to Yes.

  6. From the File menu, choose Save, and in the Save dialog box, make sure Compile is selected and choose OK to compile and save the report.

  7. Close the Properties and the Report Dataset Designer windows.

In the following procedure, you add a link from the balance text box in report 111, the Customer - Top 10 List report to report 104, the Customer Detail Trial Bal. report.

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

  2. On the View menu, choose Layout. Visual Studio opens.

    If you are opening Visual Studio from Microsoft Dynamics NAV 2013 for the first time you will choose your development environment. Otherwise, skip the next step.

  3. In the Choose Your Development Default Environment window, select General Settings and choose Start Visual Studio.

  4. In Visual Studio, choose the Report.rldc file to open it, and then in the Body section of the report, locate the BalanceLCY_Customer text box. The value of the text box is =Fields!BalanceLCY_Customer.Value. You can confirm this value by selecting the text box and viewing the Value property in the Visual Studio Properties window.

  5. Select the text box, and then from the shortcut menu, choose Text Box Properties.

  6. In the Text Box Properties window, choose the Action tab.

  7. Select the Go to URL check box and enter the following expression in the Select URL text box below the Go to URL check box:

    ="dynamicsnav:////runreport?report=104&filter=Customer.%22No.%22:"+Fields!No_Customer.Value
    

    For more information about creating filters in a URL to run a report, see How to: Run Reports.

  8. Choose OK to close the window.

  9. On the File menu, choose Save Report.rdlc to save the report in Visual Studio.

Formatting the Balance Text Box

After adding the link from the balance text box to report 104, you may want to change the format of the balance text box to indicate that the data in the text box is a link. The following steps illustrate how to format the text box.

To format the Balance text box

  1. In Visual Studio, in the Body section of the report, select the BalanceLCY_Customer text box.

  2. On the View menu, choose Properties Window.

  3. In the Properties window, in the Color field, select Blue. Expand Font and set Text Decoration, to Underline.

  4. Save the report in Visual Studio.

The following steps add a link from the data in the pie chart to report 111.

  1. In Visual Studio, select the pie chart, and then, from the shortcut menu, choose Series Properties.

  2. In the Series Properties window, select the Action tab, then select Go to URL and enter the following expression in the Select URL text box below the Go to URL check box:

    ="dynamicsnav:////runreport?report=104 &filter=Customer.%22No.%22:"+Fields!No_Customer.Value
    

    For more information about creating filters in a URL to run a report, see How to: Run Reports.

  3. Choose the OK button to close the Series Properties window.

  4. In Visual Studio, on the File menu, choose Save Report.rldc to save and then close the report in Visual Studio.

Running the Modified Report

In the development environment, you must now save the modified report and compile it before it you can run it.

To run the modified report

  1. In the development environment, save the Customer - Top 10 List report.

    A message informs you that the .rdlc file for this report has changed and asks if you want to load the changes. Choose Yes to save the changes in the database.

  2. In the Save window, verify that the Compiled check box is selected, and then choose OK.

  3. In the development environment , select the Customer - Top 10 List report and choose Run. The Edit-Customer- Top 10 List page for report 111 opens in the Microsoft Dynamics NAV Windows client.

  4. Under Options, in the Show drop-down list box, select Balance (LCY) and in the Chart Type drop-down list box, select Pie chart.

  5. Choose Preview to view the report. The report lists the top 10 list of customers. Notice that the Balance (LCY) column is formatted as a hyperlink. If you select the pie chart, you will notice that the chart is also formatted as hyperlink.

  6. Choose a value in a Balance (LCY) column. The Customer - Detail Trial Bal. report for the specified customer opens.

  7. Choose a sector in the pie chart that represents a customer. The Customer - Detail Trial Bal. report for the specified customer opens.

    Alternatively, you can run the report from the Run window.

  8. On the Windows taskbar, choose Start, and then choose Run.

  9. In the Run window, enter the following text: dynamicsnav:////runreport?report=111, and then choose the OK button.

See Also

Tasks

Walkthrough: Creating a Link from a Report to a Page

Other Resources

Report Design Walkthroughs