myDATATools.getPeppolVatex Method
This method returns data for the provLine.peppolExemptionCode and provLine.peppolExemptionText fields. For more information about each exemption code, check the Peppol Vatex
This function is not available in the Trial Version.
Public Function getPeppolVatex() As Dictionary(Of String, String)
This language is not supported or no code example is available.
Return Value
Dictionary<string, string>myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key"); Dictionary<string, string> vatex = mdt.getGovs(); foreach (var v in vatex) { Console.WriteLine(" vatex Code: " & vatex.Key); Console.WriteLine("vatex reason: " & vatex.Value); }
This language is not supported or no code example is available.
Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key") Dim vatex As Dictionary(Of String, String) = mdt.getPeppolVatex() For Each v In vatex Console.WriteLine(" vatex Code: " & vatex.Key) Console.WriteLine("vatex reason: " & vatex.Value) Next
This language is not supported or no code example is available.