Make Parcel Fabric Table View (Parcel Fabric)

Summary

Creates a table view from an input parcel fabric feature class or table. The table view that is created by the tool is temporary and will not persist after the session ends unless the document is saved. This tool is useful for accessing hidden, nonspatial parcel fabric tables, such as the Plans table or the Accuracies table.

Usage

Syntax

MakeParcelFabricTableView_fabric (in_parcel_fabric, parcel_fabric_table, out_view)
ParameterExplanationData Type
in_parcel_fabric

The parcel fabric dataset that contains the feature class or table that will be used to create a table view.

Parcel Fabric
parcel_fabric_table

The parcel fabric feature class or nonspatial table that will be used to create a table view.

String
out_view

The name of the output table view.

Table View

Code Sample

MakeParcelFabricTableView example (Python window)

The following Python window script demonstrates how to use the MakeParcelFabricTableView tool in immediate mode.

import arcpy
from arcpy import env
env.workspace = "C:/Parcel_Editor_Tutorial/Encinitas_City/Cadastral.gdb"
arcpy.MakeParcelFabricTableView_fabric("FABRIC", "Accuracy", "FabricAccuraciesTable")

Environments

This tool does not use any geoprocessing environments

Related Topics

Licensing Information

ArcView: Yes
ArcEditor: Yes
ArcInfo: Yes

Published 6/7/2010