RequestInvoices.getCancellationHistory Method

Get the cancellation history. 
It returns an ArrayList containing ArrayLists of the canellation history. Each item of the ArrayList contains the following items: 
invoiceMark, cancellationMark, cancellationDate 
in that order.
Public Function getCancellationHistory() As DataTable
This language is not supported or no code example is available.
public DataTable getCancellationHistory()
This language is not supported or no code example is available.

Return Value

DataTable
Example
 
 ArrayList cancelHistory = rqd.getcancellationHistory(); // get the cancellation history
 foreach (var entie in cancelHistory)
 {
     int invoiceMark = entie(0);
     double cancellationMark = entie(1);
     DateTime cancellationDate = entie(2);
 }
 					
This language is not supported or no code example is available.
 Dim cancelHistory As ArrayList = rqd.getcancellationHistory() ' get the cancellation history
 For Each entie In cancelHistory
     Dim invoiceMark As Integer = entie(0)
     Dim cancellationMark As Double = entie(1)
     Dim cancellationDate As Date = entie(2)
 Next
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition