Hide Table of Contents
Class: WMReportTask
[AMD Module Require]
require(["workflowmanager/WMReportTask"], function(WMReportTask) { /* code goes here */ });;

Description

WMReportTask class to perform operations on Workflow Manager (Classic) Reports.

Class hierarchy

workflowmanager/BaseTask
|_workflowmanager/WMReportTask

Constructors

NameSummary
new WMReportTask(url)Constructor for WMReportTask. Disable client caching is default to be true.

Properties

NameTypeSummary
disableClientCachingBooleanThe indicator to disable client browser caching.
proxyURLStringThe proxy URL.
tokenStringThe token string if security is on.
urlStringThe base URL for Workflow Manager (Classic) service.

Methods

NameTypeSummary
generateReport(reportId, user, callback, errback)noneGenerates a report and returns the output as formatted HTML.
getAllReports(callback, errback)ObjectGet a list of all the reports (Report[]) that are configured in the ArcGIS Workflow Manager (Classic) system.
getReportContentURL(reportId, user)noneReturns the URL string for the report content.
getReportData(reportId, user, callback, errback)ObjectExecutes a report and returns the raw result set (ReportData).
getReportStylesheet(reportId, callback, errback)noneGet the XSLT stylesheet for the specified report.
Constructor Details

new WMReportTask(url)

Constructor for WMReportTask. Disable client caching is default to be true.
Parameters:
<string>urlRequiredThe base Workflow Manager (Classic) REST URL.
Sample:
require([
    "workflowmanager/WMReportTask", ...
], function(WMReportTask, ...) {
    var wmReportTask = new wmReportTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    });
    ...
});
   
Property Details

<Boolean> disableClientCaching

The indicator to disable client browser caching.

<String> proxyURL

The proxy URL.

<String> token

The token string if security is on.

<String> url

The base URL for Workflow Manager (Classic) Service.
Method Details

generateReport(reportId, user, callback, errback)

Generates a report and returns the output as formatted HTML.
Input Parameters:
<int> reportIdRequiredThe report Id.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Code Snippet:
require([
    "workflowmanager/WMReportTask", ...
], function(WMReportTask, ...) {
    
    var wmReportTask = new WMReportTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    var reportContent;
    wmReportTask.generateReport(401, "demo", function (data) {
        reportContent = data;
    });
    ...
});
        

getAllReports(callback, errback)

Get a list of all the reports (Report[]) that are configured in the ArcGIS Workflow Manager (Classic) system. If the request is successful, the user-specified callback function is invoked with the result as a Report[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample
require([
    "workflowmanager/WMReportTask", ...
], function(WMReportTask, ...) {
    
    var wmReportTask = new WMReportTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    var reports = new Array();
    wmReportTask.getAllReports(function (data) {
        reports = data;
    });
    ...
});
        

{string} getReportContentURL(reportId, user)

Returns the URL string for the report content.
Input Parameters:
<int> reportIdRequiredThe report Id.
<string> userRequiredThe user name.
Returns:
{string} URL String for the report content.
Sample
require([
    "workflowmanager/WMReportTask", ...
], function(WMReportTask, ...) {
    
    var wmReportTask = new WMReportTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    var reportContentURL = wmReportTask.getReportContentURL(401, "demo"); 
        window.open(reportContentURL, "_blank");
    });
    ...
});

        

getReportData(reportId, user, callback, errback)

Executes a report and returns the raw result set (ReportData). If the request is successful, the user-specified callback function is invoked with the result as a ReportData. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> reportIdRequiredThe report Id.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Code Snippet:
require([
    "workflowmanager/WMReportTask", ...
], function(WMReportTask, ...) {
    
    var wmReportTask = new WMReportTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    var reportData;
    wmReportTask.getReportData(401, "demo", function (data) {
        reportData = data;
    }); 
    ...
});
 
        

getReportStylesheet(reportId, callback, errback)

Get the XSLT stylesheet for the specified report. If the request is successful, the user-specified callback function is invoked with the result as a string. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<string> dataWorkspaceIdRequiredThe dataWorkspace Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Code Snippet:
require([
    "workflowmanager/WMReportTask", ...
], function(WMReportTask, ...) {
    
    var wmReportTask = new WMReportTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    var styleSheet;
    wmReportTask.getReportStylesheet(401, function (data) {
        styleSheet = data;
    }); 
    ...
});