When using workflows in Dynamics 365 for Finance and Operations, you can enable email notifications. This means that each time when a workflow notification is sent, an email is delivered as well. Which email and to whom is specified within a particular workflow. Let's say […]
Tag: D365FO (180)
Why deep links don’t work in batch in Dynamics 365 for Finance and Operations
You can create shareable and secured URLs (aka deep links) to forms in Dynamics 365 for Finance and Operations using URL Generator, i.e. the UrlGenerator class. Deep links can be embedded in reports, emails, external apps, etc. A deep link points to a specific form […]
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}") |
[…]
Using Email tokens with SSRS Email print destination
When setting up the Print Management settings for reports in Accounts Receivable and Accounts Payable module in Dynamics 365 for Finance and Operations, you can specify in the To and Cc email addresses fields so called email tokens. For example, you can use the Primary […]