myDATATools.getClassInvType Method

Determine for which Invoice Type an E3Code-Category combination is valid. 
It could take up to 10 seconds to return data. 
This function is not available in the Trial Version.
Public Function getClassInvType( _ 
ByVal classificationType As String, _ 
ByVal classificationCategory As String
) As Dictionary(Of String, Object)
This language is not supported or no code example is available.
public Dictionary<string, object> getClassInvType( 
string classificationType
string classificationCategory 
)
This language is not supported or no code example is available.

Parameters

classificationType
string

E3 Code.

classificationCategory
string

The Category.

Return Value

Dictionary<string, object>

Dictionary(Of System.String, System.Object).

Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<string, object> result = mdt.getClassInvType("E3_561_001", "category1_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 Dictionary(Of String, Object) = mdt.getClassInvType("E3_561_001", "category1_1")
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition