JeffvdN:
First, the EViews 12 IMF SDMX Database connector uses the newer SDMX 2.0 Web Service that IMF provides so those warnings about the older sdmx interface don't apply.
Next, I noticed that a lot of the delays come from our controls attempt to display a list of series for the currently selected filter. If you see a "Please wait" popup saying it's retrieving series, you can safely cancel those and then immediately select the next filter criteria. That's why the cancel button is there.
Wildcards cannot be supported because that is a function of their web service and I don't believe they provide that functionality. However, I do think we could add the ability to type in a specific dataset name at the beginning of the filter screen, so you can jump to a specific one without having to go thru the normal filters first.
About retrieving the same concept for all countries, the fastest way to do that would be to get a list of country codes from IMF, retrieve a single concept for one of the countries, then copy and paste the command into multiple FETCH lines while only changing the country code in the name. If you have all the country codes in a separate string, you could loop thru each name and fetch as well.
And while you're at it, you might as well rename the long names we generate into something more readable for yourself by following the instructions from these postings:
Fetch & Rename
Rename multiple series using string functions
There isn't a way to test an object exists before calling FETCH. However, you can increase the number of allowed errors in running a program to allow it skip over any that don't exist and continue running. Use
SETMAXERRS command at the start of your program.
About your questions regarding mult=6 vs mult=0 and format_p1m, those parts of the object name is our attempt to store the required filter parameters we need to send to the IMF service to re-retrieve that dataset. We derive those values from IMF itself so we don't have any additional meta-data that explains what those values mean. You would have to look in the IMF website for more details on those.
Finally, if you can find an example of a particular dataset that seems to be missing data compared to the bulk download file, please give the exact name of the dataset so we can look at it ourselves. One thing to note about this, make sure that your destination workfile has the appropriate date ranges before you attempt to FETCH the data, as a FETCH does not resize your workfile.
Steve