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

Display Method Data Not Showing in Query-Based SSRS Reports in D365 FO

 While working on a Query-Based SSRS Report in Dynamics 365 Finance & Operations, I faced an issue where a display method added through ...