Description
WMJobTask class to perform operations on Workflow Manager (Classic) Jobs.
Class hierarchy
workflowmanager/BaseTask
|_workflowmanager/WMJobTask
Constructors
new WMJobTask(url) | Constructor for WMJobTask. Disable client caching is default to be true. |
Properties
disableClientCaching | Boolean | The indicator to disable client browser caching. |
proxyURL | String | The proxy URL. |
token | String | The token string if security is on. |
url | String | The base URL for Workflow Manager (Classic) service. |
Methods
addEmbeddedAttachment(jobId, user, inputElementId, callback, errback) | none | Uploads 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) | none | Adds a linked file attachment to a job. |
addLinkedRecord(jobId, tableName, user, callback, errback) | none | Adds a linked property record to a job's auxiliary (linked/related) properties table. |
addLinkedURLAttachment(jobId, url, user, callback, errback) | none | Add a URL as an attachment to the current job. |
assignJobs(jobIds, assignedType, assignedTo, user, callback, errback) | none | Assigns job(s) to a user or group. |
closeJob(jobId, user, callback, errback) | none | Closes a job. |
closeJobs(jobIds, user, callback, errback) | none | Closes one or more jobs. Supported from 10.1 onwards. |
createDependency(jobId, heldOnType, heldOnValue, depJobId, depOnType, depOnValue, user, callback, errback) | none | Creates a job dependency. |
createHold(jobId, holdTypeId, comments, user, callback, errback) | none | Creates a job hold. |
createJob(parameters, user, callback, errback) | none | Creates a new job and get jobIds (int[]). |
createJobVersion(parameters, name, parent, user, callback, errback) | none | Create a job version. |
deleteAttachment(jobId, attachmentId, user, callback, errback) | none | Deletes an attachment from a job. |
deleteDependency(jobId, dependencyId, user, callback, errback) | none | Removes a job dependency. |
deleteJobs(jobIds, deleteHistory, user, callback, errback) | none | Delete job(s). |
deleteLinkedRecord(jobId, tableName, recordId, user, callback, errback) | none | Deletes a record from a job's auxiliary (linked/related) properties table. |
getActivityLog(jobId, callback, errback) | Object | Retrieves the activity log (ActivityRecord[]) for a job. |
getAllJobIds(callback, errback) | none | Get the list of IDs (int[]) for all the jobs in the system. |
getAttachmentContentURL(jobId, attachmentId) | none | Returns a URL to access the file content of an embedded job attachment. |
getAttachments(jobId, callback, errback) | Object | Retrieves all the attachments (JobAttachment[]) for a job. |
getDependencies(jobId, callback, errback) | Object | Retrieves the list of dependencies (JobDependency[]) for a job. |
getExtendedProperties(jobId, callback, errback) | Object | Gets extended properties (AuxRecordContainer[]) for a job. |
getHolds(jobId, callback, errback) | none | Retrieves the list of holds (JobHold[]) for a job. |
getJob(jobId, callback, errback) | Object | Get the fundamental properties (JobInfo) of a job. |
getNotes(jobId, callback, errback) | none | Retrieves the notes for a job. |
listFieldValues(jobId, tableName, field, user, callback, errback) | Object | Retrieves a list of domain values and descriptions (FieldValue[]) for an extended property field. |
listMultiLevelFieldValues(jobId, field, previousSelectedValues, user, callback, errback) | Object | 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. |
logAction(jobId, activityTypeId, comments, user, callback, errback) | none | Logs an action in a job's activity log. |
queryJobsAdHoc(parameters, user, callback, errback) | Object | Queries the jobs database using an ad-hoc query definition and get job properties (QueryResult). |
queryJobsByID(queryId, user, callback, errback) | Object | Queries the jobs database using a query ID, and get the QueryResult. |
queryMultiLevelSelectedValues(jobId, field, user, callback, errback) | none | 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. |
releaseHold(jobId, holdId, comments, user, callback, errback) | none | Releases a job hold. |
reopenClosedJobs(jobIds, user, callback, errback) | none | Reopens one or more closed jobs. Supported from 10.3 onwards. |
searchJobs(text, user, callback, errback) | none | Performs a freeform text search and returns a set of matching job records. |
unassignJobs(jobIds, user, callback, errback) | none | Unassigns job(s). |
updateJob(parameters, user, callback, errback) | none | Update a job properties. |
updateNotes(jobId, notes, user, callback, errback) | none | Updates the notes for a job. |
updateRecord(jobId, record, user, callback, errback) | none | Updates the values of an extended/linked properties record. |
Constructor Details
Constructor for WMJobTask. Disable client caching is default to be true.
Parameters:
<String>url | Required | The 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.
The token string if security is on.
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> jobid | Required | The job Id. |
<string> user | Required | The user name. |
<string> inputElementId | Required | The file type of input element id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job Id. |
<string> filePath | Required | Path 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> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job Id. |
<string> tableName | Required | The name of the table to add record to. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job Id. |
<string> url | Required | The to be linked as attachment. |
<string> user | Required | The user name. |
<function> callback | Required | The success callback function name. |
<function> errback | Required | The 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> jobid | Required | An array of job IDs. |
<JobAssignmentType> assignedType | Required | Determines whether to assign to a user or group. |
<string> assignedTo | Required | The name of the user or group to assign the jobs to. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job ID. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobids | Required | An array of job IDs. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job Id. |
<JobDependencyType> heldOnType | Required | An integer value representing the dependency type of this job. |
<int> heldOnValue | Required | An integer value identifying a step, stage, or status at which this job will be held. |
<int> depJobId | Required | The ID of the job on which this job is dependent. |
<JobDependencyType> depOnType | Required | An integer value representing the dependency type of the other job. |
<int> depOnValue | Required | An integer value identifying a step, stage, or status. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job Id. |
<int> holdTypeId | Required | An integer value representing the hold type to be placed on the job. |
<string> comments | Required | Reason or more detailed information regarding why the hold is being added. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> parameters | Required | The job creation parameters. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobid | Required | The job Id. |
<string> name | Required | The name of the version to be created. |
<string> parent | Required | The version of the job's assigned geodatabase (data workspace) on which the new version will be based. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<int> attachmentId | Required | The Id of the attachment to be deleted. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<int> dependencyId | Required | The Id of the dependency to be deleted. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobIds | Required | An array of job IDs. |
<boolean> deleteHistory | Optional, Default: false | Indicates whether or not to delete the associated job history. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<string> tableName | Required | The name of the table to delete record from. |
<int> recordId | Required | The id of the record to be deleted. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<int> attachmentId | Required | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<string> tableName | Required | The name of the extended property table. |
<string> field | Required | The field name of the extended property for which to retrieve values. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<string> field | Required | The configuration of an extended properties record value. |
<string> previousSelectedValues | Required | An array of string values from the previously selected list choices. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<int> activityTypeId | Required | An integer value representing the activity type of the action associated with this log record. |
<string> comments | Required | A string containing a message to be written to the history log. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> parameters | Required | The job query parameters. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> queryId | Required | The job query Id. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<string> field | Required | The configuration of an extended properties record value. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<int> holdId | Required | The hold Id. |
<string> comments | Required | Reason or more detailed information regarding why the hold is being released. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobids | Required | An array of job IDs. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> text | Required | The text to search for. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobIds | Required | An array of job IDs. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> parameters | Required | The job update parameters. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<string> notes | Required | The new notes for the job. Set to an empty (zero-length) string to clear the job notes. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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> jobId | Required | The job Id. |
<AuxRecordDescription> record | Required | The record to be updated. |
<string> user | Required | The user name. |
<function> callback | Optional | The success callback function name. |
<function> errback | Optional | The 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);
...
});