RequestInvoices.getClassificationHistory Method

Get the classification history. 
It returns a datatable containing the classification history.
Public Function getClassificationHistory() As DataTable
This language is not supported or no code example is available.
public DataTable getClassificationHistory()
This language is not supported or no code example is available.

Return Value

DataTable
Remarks
 
The following example will create a table:
invoiceMarkclassificationMarkentityVatNumbertransactionModeclassificationPostModelineNumberamountvatAmountvatCategoryvatExemptionCategoryclassificationCategoryclassificationTypeclassificationVATtype
400001887722040400001901166885555777001001100-1-1category2_3E3_585_016VAT_361expenses
400001887722135400001901166886555777001011251.5760.381-1category2_3E3_585_016VAT_361expenses
4000018877221354000019011668865557770010129.682.321-1category2_3E3_585_016VAT_361expenses
40000188780021140000190116688755577700100155-1-1category2_3E3_585_016VAT_361expenses
The Trasaction Mode (TM) shows what classification has been made:
TMDescription
0Normal Classification
1Invopice Rejection
2Invoice Deviation
The Classification Post Mode (CPM) shows what method has been used for classification:
CPMDescription
0Classification line by line
1Classification of the whole Invoice
The column vatCategory will have a value different than -1, only when the CPM=1 has been used for classification. 
The column vatExemptionCategory will have a value different than -1 only when the CPM=1 has been used for classification and only when the vatAmount is 0.00. 
To classify a whole invoice at once and not line by line, use the Expenses Classification (whole Invoice) example.
Example
 
 DataTable classlHistory = rqd.getClassificationHistory();
 DataGridView1.DataSource = classHistory;
 					
This language is not supported or no code example is available.
 Dim classlHistory As DataTable = rqd.getClassificationHistory()
 DataGridView1.DataSource = classHistory
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition