myDATATools.checkClassification Method
Check the classification combination. If the combination is valid, it returns True
. Otherwise, it returns False
.
This function can be used to check if an invoice classification is correct or not, right before you send the invoice or the classification.
Public Function checkClassification( _
ByVal InvoiceType As String, _
ByVal classificationCategory As String, _
ByVal classificationType As String, _
ByVal checkType As Integer _
) As Boolean
This language is not supported or no code example is available.
public bool checkClassification(
string InvoiceType,
string classificationCategory,
string classificationType,
int checkType
)
This language is not supported or no code example is available.
Parameters
-
InvoiceType
-
string
Invoice Type (1.1, 1.2, 1.3, etc)
-
classificationCategory
-
string
Classification Category, ex category1_1
-
classificationType
-
string
Classification Type, example E3_561_001
-
checkType
-
int
Check Type (Income/Expenses).
1 is for Income
2 is for Expenses
Return Value
bool
myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
bool result = mdt.checkClassification("1.1", "category1_1", "E3_561_001", 1);
This language is not supported or no code example is available.
Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
Dim result as Boolean = mdt.checkClassification("1.1", "category1_1", "E3_561_001", 1)
This language is not supported or no code example is available.
.NET Framework
Supported in: 3.5 or newer