myDATATools.getAllE3 Method

Get all E3 codes, regardless of invoice type. 
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. 
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.
Public Function getAllE3( _ 
ByVal checkType As Integer
) As String()
This language is not supported or no code example is available.
public string[] getAllE3( 
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

Return Value

string[]
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 string[] incE3 = mdt.getAllE3(1); // income E3 Codes
 string[] expE3 = mdt.getAllE3(2); // expenses E3 Codes
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim incE3 as String() = mdt.getAllE3(1) 'income E3 Codes
 Dim expE3 as String() = mdt.getAllE3(2) 'expenses E3 Codes
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition