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

DefaultDimension in d365 FO X++

 Navigate to PurchTable methods you can find with DefaultDimension this.DefaultDimension = this.mergeDimension(this.getDefaultDimension(),th...