Create Reviewer Session (Data Reviewer)

ライセンス レベル:BasicStandardAdvanced

サマリ

Creates a new Reviewer session in the specified workspace.

使用法

構文

CreateReviewerSession_Reviewer (reviewer_workspace, session_name, {session_template})
パラメータ説明データ タイプ
reviewer_workspace

The workspace in which a new Reviewer session is going to be created.

Workspace
session_name

The name of the session that is going to be created in the Reviewer workspace.

String
session_template
(オプション)

An existing Reviewer session whose properties will be copied to the new session.

String

コードのサンプル

CreateReviewerSession example (stand-alone Python script)

This stand-alone Python script creates a new session in the Reviewer workspace stored in an ArcSDE geodatabase. The session is called QC Pass 1.

# Name: CreateReviewerSession.py
# Description: Creates a reviewer session in a geodatabase
# Author: Esri
# Date: December 2011

# Import arcpy module
import arcpy

# check out a data reviewer extension license
arcpy.CheckOutExtension("datareviewer")

# path to a workspace
reviewer_gdb = "C:/SampleData/Reviewer.sde"

# Execute the Create Reviewer Session tool
arcpy.CreateReviewerSession_Reviewer(reviewer_gdb, "Session 1 : Session 1")

# check in the data reviewer extension
arcpy.CheckInExtension("datareviewer")

環境

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

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: 次のものが必要 Data Reviewer
ArcGIS for Desktop Standard: 次のものが必要 Data Reviewer
ArcGIS for Desktop Advanced: 次のものが必要 Data Reviewer
9/14/2013