I recently came across a case where the printer destination settings dialog typically used by report to select print destination does not show up.
The cause we found is that an exception occurs when Dynamics AX client queries existing printer from hosted machine. The code is from Forms\SRSPrintDestinationSettingsForm\printerMap() at line 30 which is a call to external DLL to query WMI for all printers in the machine. The exception is thrown so the rest of the code thereafter is not executed resulting in the dialog not shown.
You could use try/catch block like below at Forms\SRSPrintDestinationSettingsForm\printerMap() at line 30 to log more information of the exception thrown from the CLR call with variable of System.Exception ex declared.
The exception is “not found” that indicates WMI library could not revert back with printer list. What Dynamics AX does is to send "Select * from Win32_Printer" to WMI so wbemtest could also be used to detected the error or to verify using the steps in below.
I eventually worked with a Windows Support Engineer to rebuild WMI, which you may want to do the same by discussing with your system admin. and/or Windows Support Engineer. Below is the step we use to rebuild WMI which addresses the print destination setting not shown error for your information.
Winmgmt /salvagerepository