Thursday, 7 April 2022

How to get Azure Blob URL in D365FO

 When we are exporting data in Excel or any other format using DIXF, the file gets uploaded in Azure Blob and if you need that azure blob URL you can get using the below code -


DMFEntityExportDetails      exportDetails;

you can find the export details table buffer bypassing DMF definition group and entity name. 

str downloadUrl = DMFDataPopulation::getAzureBlobReadUrl(str2Guid(exportDetails.SampleFilePath));

https://erptechblog.com/msdyn365/msdyn365fo/dmf-blob-temporary-storage/

No comments:

Post a Comment

Setting VendInvoiceInfoTable default values for custom fields - D365 FO

  When creating a vendor invoice and you are trying to populate custom fields on table VendInvoiceInfoTable you may find that the following ...