getSystemReportsBasic() Method

Table of Contents

  1. Function
  2. Syntax
  3. Parameters
  4. Return Value
  5. Sample Code
  6. Remarks
  7. Possible Errors
  8. Related Methods

Function

  • Returns a list of the system based Report Operations

Syntax

  • AeClientReportAry = AeXMLBridge.getSystemReportsBasic();

Parameters

  • None

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9

try
{
TAeClientReport[] reportNames = ws.getSystemReportsBasic();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
Try 
Dim reportNames() As TAeBasicDataItem = ws.getSystemReportsBasic
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • None

executeExportOperation
executeExportOperationStrings
executeImportOperation
executeReportOperation
executeVendorOperation
getSystemExportsBasic
getSystemImportsBasic
getSystemVendorOpsBasic

Back to Top