If you need to generate a SSRS report as a byte array, you can use a utility X++ class we created for some custom scenarios such as sending Sales and Project invoice in the single email to the corresponding customer. We will explain this particular […]
Tag: SSRS (19)
Deep links (aka drill-through links) in SSRS reports in Dynamics 365 for Finance and Operations
You can enable deep links (aka drill-through links) in SSRS reports in Dynamics 365 for Finance and Operations by setting the Action property on the wanted textbox to Go to URL and then to specify the expression for URL using the following utility method:
1 2 3 |
=Microsoft.Dynamics.Framework.Reports.BuiltInMethods.GenerateDrillThroughLink( Parameters!AX_ReportContext.Value, Parameters!AX_UserContext.Value, "[MenuItemName]", "[MenuItemType]", "[TableName]", "{Arguments}") |
[…]
Report emailing settings
In this article we will first discuss the features of built-in report emailing, and then we will focus on how Docentric AX improves report emailing and the Email print destination. Built-in functionality: Use of E-mail parameters In SSRS framework, built-in email functionality works in the […]
Save Report to Attachments
We can use the Docentric File print destination and the Save to attachments option to save report to Attachments of the underlying entity, which is the report execution context record, i.e. a record of the report menu item. Let’s say that we want to save […]
Some print management report destinations are not valid for batch processing
Some print management report destinations are not valid for batch processing warning occurs when posting and printing sales invoices in batch. In this article we will investigate this warning but let’s first examine how posting and printing an invoice in batch differs when Print Management […]