getSystemImportsBasic() 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 the names of the system based Import Operations

Syntax

  • AeBasicDataItemAry = AeXMLBridge.getSystemImportsBasic();

Parameters

  • None

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9

try
{
TAeBasicDataItem[] importNames = ws.getSystemImportsBasic();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

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

Remarks

  • there is no numeric identifier available to identify an import. For that list, it will always return zero.

Possible Errors

  • None

executeExportOperation
executeExportOperationStrings
executeImportOperation
executeReportOperation
executeVendorOperation
getSystemExportsBasic
getSystemReportsBasic
getSystemVendorOpsBasic

Back to Top