myDATATools.getValidCategoryNames (String) Method
This function works in reverse and returns all the acceptable categories for a specific E3 code. The advantage of this method is that you can also get the description of each supported category, so the end user knows exactly what he is going to select.
You can use this function when the use knows the E3 Code and he is not sure which category should select.
Categories are used in invoice classification for the field classification.Category or the field classifications.classificationCategory
The responsibility for selecting the appropriate category lies with the end user. This function is not available in the Trial Version.
Public Function getValidCategoryNames( _
ByVal classificationType As String _
) As Dictionary(Of String, Object)
This language is not supported or no code example is available.
Parameters
- classificationType
- string
This parameter refers to the E3 code, example E3_106
Return Value
Dictionary<string, object>myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key"); Dictionary<string, object> result = mdt.getValidCategoryNames("E3_106"); // The result of the above is a list containing: // [category2_10, Έξοδα Προηγούμενων Χρήσεων] // [category2_11, Έξοδα Επομένων Χρήσεων] // [category2_12, Λοιπές Εγγραφές Τακτοποίησης Εξόδων]
This language is not supported or no code example is available.
Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key") Dim result As Dictionary(Of String, Object) = mdt.getValidCategoryNames("E3_106") ' The result of the above is a list containing: ' [category2_10, Έξοδα Προηγούμενων Χρήσεων] ' [category2_11, Έξοδα Επομένων Χρήσεων] ' [category2_12, Λοιπές Εγγραφές Τακτοποίησης Εξόδων]
This language is not supported or no code example is available.