myDATATools.getPeppolTaxCategory Method

Get the Tax Category code list according to peppol. 
This method returns data for the provLine.peppolTaxCategory field. 
General rule is to you the tax category Z for 0% VAT and S when the VAT% is not 0%. 
For more information about each tax category, check the Peppol Tax Category 
This function is not available in the Trial Version.
Public Function getPeppolTaxCategory() As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> getPeppolTaxCategory()
This language is not supported or no code example is available.

Return Value

Dictionary<string, string>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<string, string> taxCat = mdt.getPeppolTaxCategory();
 foreach (var tax In taxCat)
 {
     Console.WriteLine("       tax Code: " & tax.Key);
     Console.WriteLine("tax Description: " & tax.Value);
 }
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim taxCat As Dictionary(Of String, String) = mdt.getPeppolTaxCategory()
 For Each tax In taxCat
     Console.WriteLine("       tax Code: " & tax.Key)
     Console.WriteLine("tax Description: " & tax.Value)
 Next
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition