Get Job Data Workspace (Workflow Manager)
Récapitulatif
Gets the job data workspace connection as an SDE connection file.
Utilisation
-
The Input Job ID must be for a job that currently exists in the repository.
This tool is typically used in a model to retrieve the job's data workspace as an sde connection file. For example, a model can be created to reconcile and post edits made in a specific job version to the parent version. The Get Job Data Workspace tool would be utilized to retrieve the data workspace connection, whereas the job's version would be retrieved using the Get Job Version tool, and the parent version would be retrieved using the Get Job Parent Version tool.
Syntaxe
Paramètre | Explication | Type de données |
Input_JobID |
The ID for the job whose data workspace connection is to be retrieved. | String |
Input_DatabasePath (Facultatif) |
The Workflow Manager database connection file that contains the job information. If no connection file is specified, the current default workflow manager database will be used. | File |
Input_SDEFileLocation (Facultatif) |
The job's data workspace connection file will be written to the specified folder. | Folder |
Exemple de code
Get the data workspace for the specified job.
# Import arcpy module
import arcpy
# Check out any necessary licenses
arcpy.CheckOutExtension("JTX")
# Local variables:
Input_JobID = "1"
Input_DatabasePath = "C:\\Program Files\\WMX\\Database\\wmx.jtc"
Input_SDEFileLocation = "C:\\Temp"
# Process: Get Job Data Workspace
arcpy.GetJobDataWorkspace_WMX(Input_JobID, Input_DatabasePath, Input_SDEFileLocation)