ICIReportInfo interface is used to retrieve information about EFT Server’s reports. (Also refer to ICIServer::AvailableReports property). The interface provides the set of read-only properties. The Name and DefinitionPath properties together allow you to identify the report among other reports. (Note that one definition file can contain definitions of multiple reports and the same report name can be used for different reports in different definition files.)
The ICIReportInfo::Name read-only property allows you to retrieve the name of this report.
HRESULT Name([out, retval] BSTR* pVal);
Example (VBScript):
MsgBox "Report name: " & Report.Name
The ICIReportInfo::DefinitionPath read-only property allows you to retrieve the TE-side path of the report definition file for this report.
HRESULT DefinitionPath([out, retval] BSTR* pVal);
Example (VBScript):
MsgBox "Report: " & Report.Name & "(" & Report.DefinitionPath & ")"