Available with Standard or Advanced license.
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 and the Accuracy table.
Usage
Once an input parcel fabric has been specified, a table view can be created from any parcel fabric feature class or nonspatial table.
Use to create a table view of the parcel fabric feature classes and the hidden, nonspatial system tables (Plans, Jobs, Adjustments, Vectors, and Accuracy).
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.
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
arcpy.fabric.MakeParcelFabricTableView(in_parcel_fabric, parcel_fabric_table, out_view)
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 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
Licensing information
- Basic: Yes
- Standard: Yes
- Advanced: Yes