Retrieving a List of Available Reports (AvailableReports)

icon_info.gif

Available in EFT Server 6.1 and later.

The ICIServer::AvailableReports read-only property allows you to retrieve a list of the reports available on EFT Server. Its value is a variant containing the array of ICIReportInfo interfaces:

HRESULT AvailableReports([out, retval] VARIANT* pVal);

Example (VBScript):

For Each report In Server.AvailableReports

MsgBox report.Name & " report is available"

Next