RequestE3Info.getUnclassified Method

Retrieve the invoices that contain null values in each and every Category and E3 field. Per AADE, these MARKS continue to be unclassified, so their E3 elements are left blank. 
Important: If you are certain that any of these marks are classified and can provide the corresponding classification mark, you must notify AADE at mydata.support@aade.gr with the following information: 
1. The "mark" of the invoice that doesn't show as classified to AADE, but you did classify it. 
2. The "classification mark" of the invoice that doesn't show as classified to AADE. 
3. The VAT identification number of the problematic entity. 
4. Contact Information (complete name, email address, and phone number) 
Public Function getUnclassified() As DataTable
This language is not supported or no code example is available.
public DataTable getUnclassified()
This language is not supported or no code example is available.

Return Value

DataTable
Example
 
 DataTable dt = rei.getUnclassified();
 DataGridView1.DataSource = dt; // Load DataTable directly to a DataGridView
 
 For (var i = 0; i <= dt.Rows.Count - 1; i++) // GO THROUGH ALL OF THE DATATABLE'S ROWS
 {
     int index = dt.Rows(i).Item("index");
     string mark = dt.Rows(i).Item("mark");
     string vatNumber = dt.Rows(i).Item("vatNumber");
     DateTime issueDate = dt.Rows(i).Item("issueDate);
     string category = dt.Rows(i).Item("category");
     string E3Field = dt.Rows(i).Item("type");
     double amount = dt.Rows(i).Item("amount");
 }
 					
This language is not supported or no code example is available.
 Dim dt As DataTable = rei.getUnclassified()
 DataGridView1.DataSource = dt 'Load DataTable directly to a DataGridView
 
 For i = 0 To dt.Rows.Count - 1 'GO THROUGH ALL OF THE DATATABLE'S ROWS
     DataGridView1.DataSource = dt
     Dim index As Integer = dt.Rows(i).Item("index")
     Dim mark As String = dt.Rows(i).Item("mark")
     Dim vatNumber As String = dt.Rows(i).Item("vatNumber")
     Dim issueDate As DateTime = dt.Rows(i).Item("issueDate")
     Dim category As String = dt.Rows(i).Item("category")
     Dim E3Field As String = dt.Rows(i).Item("type")
     Dim amount As Double = dt.Rows(i).Item("amount")
 Next
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition