Click or drag to resize
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.API
Assembly: 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
)

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: Boolean
true if successful; otherwise, false.
See Also