RequestVatInfo.getUnclassified Method

Retrieve the invoices that contain null values in each and every VAT field. Per AADE, these MARKS continue to be unclassified, so their VAT elements are left blank. 
Important: If you are certain that any of these marks are classified differently than category2_5 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
Remarks
 
NOTE: A MARK that does not modify any of the VAT fields does not mean that it is wrong. 
The MARK can be classified as category2_5 and without the need for VAT_XXX (refer to myDATATools.getF2Category for details). This mark is classified as 100% accurate and has no impact on the monthly VAT Document of the entity.
Example
 
 DataTable dt = rvi.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 DATABASE'S ROWS
 {
     int index = dt.Rows(i).Item("index");
     string mark = dt.Rows(i).Item("mark");
     DateTime issueDate = dt.Rows(i).Item("issueDate);
     double field301 = dt.Rows(i).Item("301");
     double field331 = dt.Rows(i).Item("331");
     ...
     double field422 = dt.Rows(i).Item("422");
     double field423 = dt.Rows(i).Item("423");
 }
 					
This language is not supported or no code example is available.
 Dim dt As DataTable = rvi.getVatInfo()
 DataGridView1.DataSource = dt 'Load DataTable directly to a DataGridView
 
 For i = 0 To dt.Rows.Count - 1 'GO THROUGH ALL OF THE DATABASE'S ROWS
     DataGridView1.DataSource = dt
     Dim index As Integer = dt.Rows(i).Item("index")
     Dim mark As Double = dt.Rows(i).Item("mark")
     Dim issueDate As DateTime = dt.Rows(i).Item("issueDate")
     Dim field301 As Double = dt.Rows(i).Item("301")
     Dim field331 As Double = dt.Rows(i).Item("331")
     ...
     Dim field422 As Double = dt.Rows(i).Item("422")
     Dim field423 As Double = dt.Rows(i).Item("423")
 Next
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition