Post Job Version (Workflow Manager)

概要

Post the current version edits to the parent version of the job.

使用法

  • The Input Job ID must be for a job that currently exists in the repository. This job must have a data workspace, a parent version, and a version already associated with it.

  • The tool does not support feature service data workspace in ArcGIS Pro . When the input job has a feature service data workspace set as its data workspace, the tool fails with an error.

構文

PostJobVersion(Input_JobID, {Input_DatabasePath})
パラメーター説明データ タイプ
Input_JobID

The ID for the job whose edits from the job's version are going to be posted to it's parent version.

String
Input_DatabasePath
(オプション)

The Workflow Manager (Classic) database connection file that contains the job information. If no connection file is specified, the current default Workflow Manager (Classic) database will be used.

File

派生した出力

名前説明データ タイプ
Output_Status

The result of the post operation. Returns 0 on success.

Long

コードのサンプル

PostJobVersion example (stand-alone script)

In this example the edits made to a job version is getting posted to the default version for the specified job ID.

# 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"

#Process: Post Job Version
arcpy.PostJobVersion_wmx(Input_JobID, Input_DatabasePath)

環境

このツールは、ジオプロセシング環境を使用しません。

ライセンス情報

  • Basic: いいえ
  • Standard: 次のものが必要 Workflow Manager
  • Advanced: 次のものが必要 Workflow Manager

関連トピック