myDATATools.getAllE3Names Method

Get all E3 codes, regardless of invoice type, along with their entire descriptions. 
Use this function to get all the supported E3 Codes, no matter of the invoice type and category. 
This function is useful for invoices where there are no specific supported E3 Codes. These invoice types are 1.6, 2.4, and 5.1. 
The advantage of this method is that you can also get the description of each supported E3 Code, so the end user knows exactly what he is going to select. 
E3 Codes are used in invoice classification for the field classification.Type or the field classifications.classificationType 
The responsibility for selecting the appropriate E3 Code lies with the end user. 
This function is not available in the Trial Version.
Public Function getAllE3Names( _ 
ByVal checkType As Integer
) As SortedDictionary(Of String, Object)
This language is not supported or no code example is available.
public SortedDictionary<string, object> getAllE3Names( 
int checkType 
)
This language is not supported or no code example is available.

Parameters

checkType
int

Check Type (Income/Expenses). 
1 is for Income 
2 is for Expenses 
3 is for Income and Expenses

Return Value

SortedDictionary<string, object>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 SortedDictionary<string, object> E3Codes = mdt.getAllE3Names(1); // income E3 Codes
 foreach (E3 v in E3Codes)
 {
     Console.WriteLine("       E3 Code: " & E3.Key);
     Console.WriteLine("E3 Description: " & E3.Value);
 }
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim E3Codes As SortedDictionary(Of String, Object) = mdt.getAllE3Names(1) 'income E3 Codes
 For Each E3 In E3Codes
     Console.WriteLine("       E3 Code: " & E3.Key)
     Console.WriteLine("E3 Description: " & E3.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