Skip to main content

Posts

Showing posts from March, 2023

Electronic Reporting: Send vendor payments to external azure storage via X++

Electronic Reporting module in Microsoft Dynamics 365 Finance Operation lets you archive file generated by ER at SharePoint location and in Azure Storage as per this link  Archive ER destination type - Finance & Operations | Dynamics 365 | Microsoft Learn . APIs can be used to check message status and read file from either location. Logic Apps or Power Automate can be used to make a call to APIs, read files, and perform required action. This post is not about how this can be done via integration :) It's been a while I haven't written a full code base post (no low code :)) To send ER generated files directly to your provided Azure Blob Container, below is the sample class. using  Microsoft. Azure ; using  Microsoft.WindowsAzure. Storage ; using  Microsoft.WindowsAzure.Storage. File ; using  Microsoft.WindowsAzure.Storage. Blob ; using  Microsoft.WindowsAzure.Storage. Auth ;  class  DAX_ERVendPaymOutFieUploadHelper {    ...