Dovico.TrackITAPI.CReport.GetReportParameters(System.String,Dovico.TrackITAPI.CStateInfo)
Function Overview:
This method returns the parameters that need to be configured for a specified report. The ID of the report is specified in getinfo.xsd format.
Parameter List:
sXml - string - xml containing ID of item to retrieve parameters for in the format getinfo.xsd
siState - CStateInfo - State information needed to process the transaction
Returns
Parameters for the report in a non-xml format.
Example:
// initialize a string of xml containing the ID of the report to retrieve parameter information for
string sXml = "<GetInfo:ID xmlns:GetInfo=\"http://www.dovico.com/schemas/getinfo.xsd\">30100</GetInfo:ID>";
// call the method
string sRegionInfo = wsapi.MethodInvoke("ReportGetReportParameters", sXml, stToken);