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

Description

WMJobTask class to perform operations on Workflow Manager (Classic) Jobs.

Class hierarchy

workflowmanager/BaseTask
|_workflowmanager/WMJobTask

Constructors

ConstructorDescription
new WMJobTask(url)Constructor for WMJobTask. 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
addEmbeddedAttachment(jobId, user, inputElementId, callback, errback)noneUploads a user-specified file (using FileReference) to the WM server and attaches it to a job as an embedded attachment.
addLinkedFileAttachment(jobId, filePath, user, callback, errback)noneAdds a linked file attachment to a job.
addLinkedRecord(jobId, tableName, user, callback, errback)noneAdds a linked property record to a job's auxiliary (linked/related) properties table.
addLinkedURLAttachment(jobId, url, user, callback, errback)noneAdd a URL as an attachment to the current job.
assignJobs(jobIds, assignedType, assignedTo, user, callback, errback)noneAssigns job(s) to a user or group.
closeJob(jobId, user, callback, errback)noneCloses a job.
closeJobs(jobIds, user, callback, errback)noneCloses one or more jobs. Supported from 10.1 onwards.
createDependency(jobId, heldOnType, heldOnValue, depJobId, depOnType, depOnValue, user, callback, errback)noneCreates a job dependency.
createHold(jobId, holdTypeId, comments, user, callback, errback)noneCreates a job hold.
createJob(parameters, user, callback, errback)noneCreates a new job and get jobIds (int[]).
createJobVersion(parameters, name, parent, user, callback, errback)noneCreate a job version.
deleteAttachment(jobId, attachmentId, user, callback, errback)noneDeletes an attachment from a job.
deleteDependency(jobId, dependencyId, user, callback, errback)noneRemoves a job dependency.
deleteJobs(jobIds, deleteHistory, user, callback, errback)noneDelete job(s).
deleteLinkedRecord(jobId, tableName, recordId, user, callback, errback)noneDeletes a record from a job's auxiliary (linked/related) properties table.
getActivityLog(jobId, callback, errback)ObjectRetrieves the activity log (ActivityRecord[]) for a job.
getAllJobIds(callback, errback)noneGet the list of IDs (int[]) for all the jobs in the system.
getAttachmentContentURL(jobId, attachmentId)noneReturns a URL to access the file content of an embedded job attachment.
getAttachments(jobId, callback, errback)ObjectRetrieves all the attachments (JobAttachment[]) for a job.
getDependencies(jobId, callback, errback)ObjectRetrieves the list of dependencies (JobDependency[]) for a job.
getExtendedProperties(jobId, callback, errback)ObjectGets extended properties (AuxRecordContainer[]) for a job.
getHolds(jobId, callback, errback)noneRetrieves the list of holds (JobHold[]) for a job.
getJob(jobId, callback, errback)ObjectGet the fundamental properties (JobInfo) of a job.
getNotes(jobId, callback, errback)noneRetrieves the notes for a job.
listFieldValues(jobId, tableName, field, user, callback, errback)ObjectRetrieves a list of domain values and descriptions (FieldValue[]) for an extended property field.
listMultiLevelFieldValues(jobId, field, previousSelectedValues, user, callback, errback)ObjectRetrieves a list of display values (FieldValue[]) for one of the display fields that comprise a multi-level table list extended property. As each display field is selected, for example using a dropdown UI control, this method can be called to obtain a list of values to display in the subsequent dropdown control.
logAction(jobId, activityTypeId, comments, user, callback, errback)noneLogs an action in a job's activity log.
queryJobsAdHoc(parameters, user, callback, errback)ObjectQueries the jobs database using an ad-hoc query definition and get job properties (QueryResult).
queryJobsByID(queryId, user, callback, errback)ObjectQueries the jobs database using a query ID, and get the QueryResult.
queryMultiLevelSelectedValues(jobId, field, user, callback, errback)noneRetrieves an array of string values representing the current display values for each display field in a multi-level table list extended property. The values from this method can be used to pre-select items in dropdown lists when initially displaying the extended properties of a job.
releaseHold(jobId, holdId, comments, user, callback, errback)noneReleases a job hold.
reopenClosedJobs(jobIds, user, callback, errback)noneReopens one or more closed jobs. Supported from 10.3 onwards.
searchJobs(text, user, callback, errback)nonePerforms a freeform text search and returns a set of matching job records.
unassignJobs(jobIds, user, callback, errback)noneUnassigns job(s).
updateJob(parameters, user, callback, errback)noneUpdate a job properties.
updateNotes(jobId, notes, user, callback, errback)noneUpdates the notes for a job.
updateRecord(jobId, record, user, callback, errback)noneUpdates the values of an extended/linked properties record.
Constructor Details

new WMJobTask(url)

Constructor for WMJobTask. Disable client caching is default to be true.
Parameters:
<String>urlRequiredThe base Workflow Manager (Classic) REST URL.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var wmJobTask = new WMJobTask("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

addEmbeddedAttachment(jobId, user, inputElementId, callback, errback)

Uploads a user-specified file (using FileReference) to the WM server and attaches it to a job as an embedded attachment. If the request is successful, the user-specified callback function is invoked with the result as an integer (attachmentment Id). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job Id.
<string> userRequiredThe user name.
<string> inputElementIdRequiredThe file type of input element id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function FileUpload{
      wmJobTask.addEmbeddedAttachment(5, "cjones", 'fileToUpload',
        function () {
            alert("File uploaded successfully.")
        }, function () {
            alert("Failed to upload file")
        }
      );
    });
    ...
}); 

HTML:
<form name="form" action="" method="POST" enctype="multipart/form-data" id="attachmentForm"> 
  <table cellpadding="0" cellspacing="0" class="tableForm">  		                                    
    <tr>
      <td width="380px"><input id="fileToUpload" type="file" size="45" name="fileToUpload" class="input"/></td>
      <td><a id="buttonUpload" onclick="return FileUpload();"></a></td>	
    </tr> 			                                     
  </table> 
</form>
        

addLinkedFileAttachment(jobId, filePath, user, callback, errback)

Adds a linked file attachment to a job. If the request is successful, the user-specified callback function is invoked with the result as an integer (attachmentment Id). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job Id.
<string> filePathRequiredPath to the file that is to be linked. This can be either a local file path (e.g. C:\Documents\MyFile.pdf) or a shared folder (e.g. \\server\WorkflowDocs\MyFile.pdf).
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.addLinkedFileAttachment(804, "c:\\temp\\test.txt", "cjones", function (attachmentId) {
       console.log("attachmentId: " + attachmentId); 
    });       
    ...
});    

addLinkedRecord(jobId, tableName, user, callback, errback)

Adds a linked property record to a job's auxiliary (linked/related) properties table. If the request is successful, the user-specified callback function is invoked with the result as an integer (the new added record Id). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job Id.
<string> tableNameRequiredThe name of the table to add record to.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.addLinkedRecord(6, "wmdb.DBO.linkTable", "cjones", 
    function () {
        alert("Recorded added successfully.")
    }, function () {
        alert("Failed to add linked record.")
    });       
    ...
});  

addLinkedURLAttachment(jobId, url, user, callback, errback)

Add a URL as an attachment to the current job.
Input Parameters:
<int> jobidRequiredThe job Id.
<string> urlRequiredThe to be linked as attachment.
<string> userRequiredThe user name.
<function> callbackRequiredThe success callback function name.
<function> errbackRequiredThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.addLinkedURLAttachment(804, "http:\\www.esri.com", "cjones", function (attachmentId) {
       console.log("attachmentId: " + attachmentId); 
    });       
    ...
});   

assignJobs(jobIds, assignedType, assignedTo, user, callback, errback)

Assigns job(s) to a user or group. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<array> jobidRequiredAn array of job IDs.
<JobAssignmentType> assignedTypeRequiredDetermines whether to assign to a user or group.
<string> assignedToRequiredThe name of the user or group to assign the jobs to.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var jobIds = [574, 581];
    wmJobTask.assignJobs(jobIds, esri.WorkflowManager.JobAssignmentType.USER, "jrobinson", "cjones", 
        function () {
            alert("Jobs assigned successfully.")
        }, function () {
            alert("Failed to assign jobs.")
    });       
    ...
});     

closeJob(jobId, user, callback, errback)

Closes a job. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job ID.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.closeJob(256, "cjones", 
        function () {
            alert("Job closed successfully.")
        }, function () {
            alert("Failed to close job.")
    });       
    ...
});   

closeJobs(jobIds, user, callback, errback)

Closes one or more jobs. Supported from 10.1 onwards. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<array> jobidsRequiredAn array of job IDs.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.closeJobs([256, 258], "cjones", 
        function () {
            alert("Job closed successfully.")
        }, function () {
            alert("Failed to close job.")
    });       
    ...
});    

createDependency(jobId, heldOnType, heldOnValue, depJobId, depOnType, depOnValue, user, callback, errback)

Creates a job dependency. If the request is successful, the user-specified callback function is invoked with the result as an integer (dependency Id). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job Id.
<JobDependencyType> heldOnTypeRequiredAn integer value representing the dependency type of this job.
<int> heldOnValueRequiredAn integer value identifying a step, stage, or status at which this job will be held.
<int> depJobIdRequiredThe ID of the job on which this job is dependent.
<JobDependencyType> depOnTypeRequiredAn integer value representing the dependency type of the other job.
<int> depOnValueRequiredAn integer value identifying a step, stage, or status.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.

createHold(jobId, holdTypeId, comments, user, callback, errback)

Creates a job hold. If the request is successful, the user-specified callback function is invoked with the result as an integer (hold Id). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job Id.
<int> holdTypeIdRequiredAn integer value representing the hold type to be placed on the job.
<string> commentsRequiredReason or more detailed information regarding why the hold is being added.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.

createJob(parameters, user, callback, errback)

Creates a new job and get jobIds (int[]). If the request is successful, the user-specified callback function is invoked with the result as an array of integer(jobIds). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<JobCreationParameters> parametersRequiredThe job creation parameters.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var para = new esri.WorkflowManager.SupportClasses.JobCreationParameters();
    para.jobTypeId = 1;
    para.assignedType = JobAssignmentType.USER;
    para.assignedTo = "demo";
    para.startDate = new Date(2011, 12, 3);
    para.dueDate = new Date(2011, 12, 15);
    para.priority = 1;
    para.description = "test create job description";
    para.ownedBy = "demo";
    // polygon
    var polygon = new esri.geometry.Polygon(new esri.SpatialReference({ wkid: 102100 }));
    polygon.addRing([[-108.92, 44.73], [-108.92, 36.01], [-126.46, 36.01], [-126.46, 44.73], [-108.92, 44.73]]);
    para.loi = polygon;
    // points
    // var multipoint = new esri.geometry.Multipoint(new esri.SpatialReference({ wkid: 102100 }));
    // multipoint.addPoint(new esri.geometry.Point(-108.92, 44.73)); 
    // multipoint.addPoint(new esri.geometry.Point(-108.92, 36.01)); 
    // multipoint.addPoint(new esri.geometry.Point(-126.46, 36.01)); 
    // multipoint.addPoint(new esri.geometry.Point(-126.46, 44.73)); 
    // multipoint.addPoint(new esri.geometry.Point(-108.92, 44.73)); 
    // para.loi = multipoint;    

    var jobIDs = new Array();
    wmjobTask.createJob(para, "demo", function(data){  
      jobIDs = data;
    });       
    ...
});    

createJobVersion(parameters, name, parent, user, callback, errback)

Create a job version. If the request is successful, the user-specified callback function is invoked with the result as string (version name). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobidRequiredThe job Id.
<string> nameRequiredThe name of the version to be created.
<string> parentRequiredThe version of the job's assigned geodatabase (data workspace) on which the new version will be based.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.

deleteAttachment(jobId, attachmentId, user, callback, errback)

Deletes an attachment from a job. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> attachmentIdRequiredThe Id of the attachment to be deleted.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.deleteAttachment(804, 8504, "cjones", 
    function () {
        alert("Job attachment deleted successfully.")
    }, function () {
        alert("Failed to delete job attachment.")
    });       
    ...
});    

deleteDependency(jobId, dependencyId, user, callback, errback)

Removes a job dependency. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> dependencyIdRequiredThe Id of the dependency to be deleted.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.

deleteJobs(jobIds, deleteHistory, user, callback, errback)

Delete job(s). If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<array> jobIdsRequiredAn array of job IDs.
<boolean> deleteHistoryOptional, Default: falseIndicates whether or not to delete the associated job history.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var jobIds = [574, 581];
    wmJobTask.deleteJobs(jobIds, true, "demo",
        function () {
            alert("Jobs deleted successfully.")
        }, function () {
            alert("Failed to delete jobs.")
    });      
    ...
});    

deleteLinkedRecord(jobId, tableName, recordId, user, callback, errback)

Deletes a record from a job's auxiliary (linked/related) properties table. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<string> tableNameRequiredThe name of the table to delete record from.
<int> recordIdRequiredThe id of the record to be deleted.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.

getActivityLog(jobId, callback, errback)

Retrieves the activity log (ActivityRecord[]) for a job. If the request is successful, the user-specified callback function is invoked with the result as a ActivityRecord[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var activityRecord = new Array();
    wmJobTask.getActivityLog(298, function (data) {
        activityRecord = data;
    });      
    ...
}); 
        

getAllJobIds(callback, errback)

Get the list of IDs (int[]) for all the jobs in the system. If the request is successful, the user-specified callback function is invoked with the result as an array of integer(jobIds). 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/WMJobTask", ...
], function(WMJobTask, ...) {
    var jobIDs = new Array();
    wmJobTask.getAllJobIds(function (data) {
        jobIDs = data;
    });     
    ...
}); 
        

{string} getAttachmentContentURL(jobId, attachmentId)

Returns a URL to access the file content of an embedded job attachment. Note that this method should only be used for embedded attachments, not for linked file/URL types.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> attachmentIdRequiredThe Id of the attachment to be deleted.
Returns:
{string} URL String to access the file content of a job attachment (most often embedded).
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var URLString = wmjobTask.getAttachmentContentURL(804, 8001);
    window.open(URLString, "_blank");
    });     
    ...
});
        

getAttachments(jobId, callback, errback)

Retrieves all the attachments (JobAttachment[]) for a job. If the request is successful, the user-specified callback function is invoked with the result as a JobAttachment[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var jobAttachments = new Array();
    wmJobTask.getAttachments(294, function (data) {
        jobAttachments = data;
    });     
    ...
});
        

getDependencies(jobId, callback, errback)

Retrieves the list of dependencies (JobDependency[]) for a job. If the request is successful, the user-specified callback function is invoked with the result as a JobDependency[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var jobAttachments = new Array();
    wmJobTask.getAttachments(294, function (data) {
        jobAttachments = data;
    });    
    ...
});
        

getExtendedProperties(jobId, callback, errback)

Gets extended properties (AuxRecordContainer[]) for a job. If the request is successful, the user-specified callback function is invoked with the result as a AuxRecordContainer[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var jobAttachments = new Array();
    wmJobTask.getAttachments(294, function (data) {
        jobAttachments = data;
    });    
    ...
});
        

getHolds(jobId, callback, errback)

Retrieves the list of holds (JobHold[]) for a job. If the request is successful, the user-specified callback function is invoked with the result as a JobHold[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var holds = new Array();
    wmJobTask.getHolds(87, function (data) {
        holds = data;
    });   
    ...
});  

getJob(jobId, callback, errback)

Get the fundamental properties (JobInfo) of a job. If the request is successful, the user-specified callback function is invoked with the result as a JobInfo. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.getJob(5, function (jobInfo) {
        console.log("id: " + jobInfo.id);
        console.log("name: " + jobInfo.name);  
        console.log("description: " + jobInfo.description);
        console.log("ownedBy: " + jobInfo.ownedBy);
    });   
    ...
});
        

getNotes(jobId, callback, errback)

Retrieves the notes for a job. If the request is successful, the user-specified callback function is invoked with the result as string (job note). Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.getNotes(5, function (notes) {
        console.log("job notes: " + notes);
    });   
    ...
});
        

listFieldValues(jobId, tableName, field, user, callback, errback)

Returns a list of domain values and descriptions (FieldValue[]) for an extended property field. If the request is successful, the user-specified callback function is invoked with the result as a FieldValue[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<string> tableNameRequiredThe name of the extended property table.
<string> fieldRequiredThe field name of the extended property for which to retrieve values.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.listFieldValues(18010, "wmdb.DBO.jtx_extra_properties", "TEXTNAME", "demo", function (fieldValues) {
      dojo.forEach(fieldValues,function(fieldValue){
        console.log("value: " + fieldValue.value);
        console.log("description: " + fieldValue.description);    
        }); 
    });     
    ...
});
        

listMultiLevelFieldValues(jobId, field, previousSelectedValues, user, callback, errback)

Retrieves a list of display values (FieldValue[]) for one of the display fields that comprise a multi-level table list extended property. As each display field is selected, for example using a dropdown UI control, this method can be called to obtain a list of values to display in the subsequent dropdown control. If the request is successful, the user-specified callback function is invoked with the result as a FieldValue[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<string> fieldRequiredThe configuration of an extended properties record value.
<string> previousSelectedValuesRequiredAn array of string values from the previously selected list choices.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.listMultiLevelFieldValues(18010, auxRecordValue, ["California", "Alameda"], "demo", function (fieldValues) {
        dojo.forEach(fieldValues,function(fieldValue){
            console.log("value: " + fieldValue.value);
            console.log("description: " + fieldValue.description);    
        });  
    });  
    ...
});
        

logAction(jobId, activityTypeId, comments, user, callback, errback)

Logs an action in a job's activity log. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> activityTypeIdRequiredAn integer value representing the activity type of the action associated with this log record.
<string> commentsRequiredA string containing a message to be written to the history log.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.logAction(18010, 414, "adding test log", "demo", function () {
        alert("Log added successfully");
    });  
    ...
});
        

queryJobsAdHoc(parameters, user, callback, errback)

Queries the jobs database using an ad-hoc query definition and get job properties (QueryResult). If the request is successful, the user-specified callback function is invoked with the result as a QueryResult. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<JobQueryParameters> parametersRequiredThe job query parameters.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var queryResult;
    var parameter = new esri.WorkflowManager.SupportClasses.JobQueryParameters();
    parameter.fields = "JTX_JOBS.JOB_ID,JTX_JOBS.JOB_NAME";
    parameter.tables = "JTX_JOBS";
    wmjobTask.queryJobsAdHoc(parameter, "demo", function (data) {
        queryResult = data;
    }); 
    ...
});
        

queryJobsByID(queryId, user, callback, errback)

Queries the jobs database using a query ID. If the request is successful, the user-specified callback function is invoked with the result as a QueryResult. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> queryIdRequiredThe job query Id.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var queryResult;
    wmjobTask.queryJobsByID(408, "demo", function (data) {
        queryResult = data;
    }); 
    ...
});
        

queryMultiLevelSelectedValues(jobId, field, user, callback, errback)

Retrieves an array of string values representing the current display values for each display field in a multi-level table list extended property. The values from this method can be used to pre-select items in dropdown lists when initially displaying the extended properties of a job. If the request is successful, the user-specified callback function is invoked with the result as a string array. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<string> fieldRequiredThe configuration of an extended properties record value.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmjobTask.queryMultiLevelSelectedValues(408, auxRecordValue, "demo", function (data) {
        var selectedValues = data;
        for (var i = 0; i < selectedValues.length; i++) {
            // set the selected item of a dropdown list control to selectedValues[i]
        }
    }); 
    ...
});
    

releaseHold(jobId, holdId, comments, user, callback, errback)

Releases a job hold. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> holdIdRequiredThe hold Id.
<string> commentsRequiredReason or more detailed information regarding why the hold is being released.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.

reopenClosedJobs(jobIds, user, callback, errback)

Reopens one or more closed jobs. Supported from 10.3 onwards. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<array> jobidsRequiredAn array of job IDs.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmJobTask.reopenClosedJobs([256, 258], "cjones", 
        function () {
            alert("Job reopened successfully.")
        }, function () {
            alert("Failed to reopen closed job.")
    });       
    ...
});    

searchJobs(text, user, callback, errback)

Performs a freeform text search and returns a set of matching job records. If the request is successful, the user-specified callback function is invoked with the result as the result as QueryResult. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<string> textRequiredThe text to search for.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var queryResult;
    wmjobTask.searchJobs("job_287", "demo", function (data) {
        queryResult = data;
    }); 
    ...
});
   

unassignJobs(jobIds, user, callback, errback)

Unassigns job(s). If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<array> jobIdsRequiredAn array of job IDs.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var ids = [574, 581];
    wmjobTask.unassignJobs(ids, "demo", function () {
        alert("Jobs unassigned successfully.");
    }); 
    ...
});
        

updateJob(parameters, user, callback, errback)

Update a job's properties. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<JobUpdateParameters> parametersRequiredThe job update parameters.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var para = new esri.WorkflowManager.SupportClasses.JobUpdateParameters();
    para.jobId = 2005;
    para.assignedType = JobAssignmentType.GROUP;
    para.assignedTo = "QA/QC";
    para.startDate = new Date(2011, 12, 3);
    para.dueDate = new Date(2011, 12, 15);
    para.clearStartDate = true;
    para.clearDueDate = true;
    para.clearAOI = true;
    para.priority = 1;
    para.description = "This is an important job.";
    para.ownedBy = "amiller";
    para.parentVersion = null;
    wmjobTask.updateJob(para, "demo", function () {
        alert("Job updated successfully.");
    }); 
    ...
});
        

updateNotes(jobId, notes, user, callback, errback)

Updates the notes for a job. If the request is successful, the user-specified callback function is invoked with an empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<string> notesRequiredThe new notes for the job. Set to an empty (zero-length) string to clear the job notes.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    wmjobTask.updateNotes("This job need to be done as soon as possible.", "demo", function () {
        alert("Job note updated successfully.");
    }); 
    ...
});
        

updateRecord(jobId, record, user, callback, errback)

Updates the values of an extended/linked properties record. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<AuxRecordDescription> recordRequiredThe record to be updated.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMJobTask", ...
], function(WMJobTask, ...) {
    var record = new esri.WorkflowManager.SupportClasses.AuxRecordDescription();
    record.recordId = 403;
    record.tableName = "wmdb.DBO.linkTable";                        
    record.properties = "{\"name\":\"John\",\"amount\":88.99}";
    wmjobTask.updateRecord(18414, record, "demo", null); 
    ...
});