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
This tool is commonly used to create a table view with a selected set of attributes or fields.
-
ArcCatalog does not display these table views but they can be used as inputs to other geoprocessing tools in the current ArcGIS session. Once the ArcGIS application is exited, the table views are deleted.
Table views created in ArcCatalog cannot be used in ArcMap.
-
Once an input parcel fabric has been specified, a table view can be created from any parcel fabric feature class or nonspatial table.
-
An existing table view will be overwritten if the same table view name is entered and if you explicitly state that overwriting output is allowed.
Syntax
Parameter | Explanation | Data 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
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")