StatusType

Zusammenfassung

The StatusType object provides access to the status type configuration elements in the Workflow Manager (Classic) database.

Diskussion

The status types are a template for the statuses used to describe the states that a job moves through during its execution.

Eigenschaften

EigenschaftErläuterungDatentyp
caption
(Schreibgeschützt)

A caption about the StatusType.

String
description
(Schreibgeschützt)

A description about the StatusType.

String
ID
(Schreibgeschützt)

The ID of the StatusType.

Integer
name
(Schreibgeschützt)

The name of the StatusType.

String

Codebeispiel

StatusType example

The following script gets the status types in the Workflow Manager (Classic) database.

import arcpy

#Establish a connection to a Workflow database
conn = arcpy.wmx.Connect(r'c:\test\Workflow.jtc')

#Get a list of Status Types in the Workflow database
statustypes = conn.config.getStatusTypes()

#Access a Workflow Job 
job = conn.createJob(job_type_name="Landbase Updates")

#Find the name of the status type with an id of 2 and use the value to change the job's status
for statustypeid in statustypes:
     if(statustypeid.ID==2):
         job.status=statustypeid.name

#Print the name of the job's new status
print(job.status)