Make Parcel Fabric Table View (Parcel Fabric)

License Level:BasicStandardAdvanced

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 Layer
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

Related Topics

Licensing Information

ArcGIS for Desktop Basic: Yes
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
5/13/2013