Posts

Showing posts from April, 2021

How to Create Azure Logic Apps

Image
  Login to  https://portal.azure.com/ Search for the logic app in the search bar in the top header. Click on Add. After clicking on Add, you will see two options one for consumption and the other for Preview. Click on the consumption a create new form opens. Select Subscription, here I selected  Dynamics. Select Resource group, here I created a new Resource Group with the name  D365Automation. Enter a Logic App name in my case it is  SendEmailOnAccountCreation. Select the location, here I selected East US 2 . Now, click  Review + Create.   After, clicking  Create  Deployment of app starts. Post-deployment completion you will be redirected to the App overview page.

D365 FO: Different ways to deploy SSRS Reports

There are two ways to deploy the SSRS reports in D365 for finance and operation. The first choice would be to deploy the report directly from Visual Studio. Open the Build menu, click Deploy. Alternatively, in Solution Explorer, right-click the report project and then click Deploy. In Solution Explorer, right-click the report and then click Deploy Lastly, we can deploy the reports using PowerShell. Open Windows PowerShell in Admin mode and execute the below commands as per requirement. For deploying all SSRS reports K:\AosService\PackagesLocalDirectory\Plugins\AxReportVmRoleStartupTask\DeployAllReportsToSSRS.ps1 -PackageInstallLocation “K:\AosService\PackagesLocalDirectory” For deploying the specific report K:\AosService\PackagesLocalDirectory\Plugins\AxReportVmRoleStartupTask\DeployAllReportsToSSRS.ps1 -Module ApplicationSuite -ReportName <ReportName> -PackageInstallLocation “K:\AosService\PackagesLocalDirectory” (Replace <ReportName> with required report name such as Reta...