myDATATools.getValidCategory (String) Method
This function works in reverse and returns all the acceptable categories for a specific E3 code.
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.
myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key"); string[] result = mdt.getValidCategory("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 String() = mdt.getValidCategory("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.