executeExportOperation() 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 an export previously defined in the client’s database

Syntax

  • String = AeXMLBridge.executeExportOperation(AeClientExport);

Parameters

Return Value

  • Returns a string that contains either a message, a HEX encoded file or a raw text file

Sample Code

C#

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

TAeClientExport[] exports = ws.getSystemExportsBasic();
// retrieve list of existing exports

try
{
string exportDesc = ws.executeExportOperation(exports[0]);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
7
8
9

Dim exports As TAeClientExport() = ws.getSystemExportsBasic()
' retrieve list of existing exports

Try
Dim exportDesc As String = ws.executeExportOperation(exports(0))
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

Possible Errors

  • Unknown

executeExportOperationStrings
executeImportOperation
executeReportOperation
executeVendorOperation
getSystemExportsBasic
getSystemImportsBasic
getSystemReportsBasic
getSystemVendorOpsBasic

Back to Top