ClientReportRunCustom Method |
Runs a custom report with the specified custom options and output format
and saves it to the specified local path.
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntax public bool ReportRunCustom(
string Fields,
string Tables,
string Criteria,
string Groupings,
string Order,
string Limit,
ClientReportOutputFormat OutputFormat,
string LocalPath
)
Public Function ReportRunCustom (
Fields As String,
Tables As String,
Criteria As String,
Groupings As String,
Order As String,
Limit As String,
OutputFormat As ClientReportOutputFormat,
LocalPath As String
) As Boolean
public:
bool ReportRunCustom(
String^ Fields,
String^ Tables,
String^ Criteria,
String^ Groupings,
String^ Order,
String^ Limit,
ClientReportOutputFormat OutputFormat,
String^ LocalPath
)
Parameters
- Fields
- Type: SystemString
SQL fields to query. - Tables
- Type: SystemString
SQL tables to query. - Criteria
- Type: SystemString
SQL criteria to apply. - Groupings
- Type: SystemString
SQL groupings to apply. - Order
- Type: SystemString
SQL order to apply. - Limit
- Type: SystemString
SQL limit to apply - OutputFormat
- Type: MOVEit.DMZ.APIClientReportOutputFormat
Output format to return the report in. - LocalPath
- Type: SystemString
Path of the file on the local filesystem to save the report contents to.
Return Value
Type:
Booleantrue if successful; otherwise,
false.
See Also