executeReportOperation() 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

  • Executes a report previously defined in the client’s database

Syntax

  • String = AeXMLBridge.executeReportOperation(AeClientReport);

Parameters

Return Value

  • This method returns a string compromised of a HEX encoded PDF file, or an email send confirmation

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
11
12

TAeClientReport[] reports = ws.getSystemReportsBasic();
// retrieve a list of reports in the system

try
{
string reportData = ws.executeReportOperation(reports[0]);
}
catch
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
7
8
9

Dim reports As TAeClientReport() = ws.getSystemReportsBasic()
' retrieve a list of reports in the system

Try
Dim reportData As String = ws.executeReportOperation(reports(0))
Catch
MessageBox.Show(ex.Message)
End Try

Remarks

Possible Errors

  • None

executeExportOperation
executeExportOperationStrings
executeImportOperation
executeVendorOperation
getSystemExportsBasic
getSystemImportsBasic
getSystemReportsBasic
getSystemVendorOpsBasic

Back to Top