I've made a small report to check if the VAT number is correct, using an EU database:
(Report --> On after get record of the relation tabel)
LinkTxt:='
http://europa.eu.int/comm/taxation_customs/vies/cgi-bin/viesquer?MS='+
DELCHR(COPYSTR(Relatie."BTW-nummer",1,2))+'&VAT='+
DELCHR(COPYSTR(Relatie."BTW-nummer",3))+'&Lang=NL';
HYPERLINK(LinkTxt);
Although this solution is working, you can only run it one at a time, because the information has to be read on the screen.
Does anybody know a way to save the resulting website, so I can convert the answer from a saved to file back to Navision Financials 2.60 ?
Comments
Here is an example (from http://www.4guysfromrolla.com/webtech/071199-1.shtml):
I have no idea if you can call these components directly from Navision. If not, you need to write a OCX that calls the component, and you call that OCX from Navision.
Thanks for your reply, but I've found an easier solution by opening the site in Excel in stead of the internet explorer.
It is now working fine.