<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Using MakeParcelFabricTableView to get the JobObjects table? in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/using-makeparcelfabrictableview-to-get-the/m-p/463199#M15569</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For that matter, has anyone successfully run the "MakeParcelFabricTableView" tool in Python at all?&amp;nbsp; I just created &amp;amp; successfully ran a model using that tool, but exported that model to a python script and got an error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Python code exported from successful model:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# ---------------------------------------------------------------------------
# fug.py
# Created on: 2011-02-03 08:28:07.00000
#&amp;nbsp;&amp;nbsp; (generated by ArcGIS/ModelBuilder)
# Description: 
# ---------------------------------------------------------------------------

# Import arcpy module
import arcpy


# Local variables:
Basemap_DBO_Fabric = "Database Connections\\DefaultOnBasemap.sde\\Basemap.DBO.ParcelFabric\\Basemap.DBO.Fabric"
FabricTable_View = "FabricTable_View"
jobs = "C:\\Dan\\TurdPolishing.gdb\\jobs2"

# Process: Make Parcel Fabric Table View
arcpy.MakeParcelFabricTableView_fabric(Basemap_DBO_Fabric, "Jobs", FabricTable_View)

# Process: Copy Rows
arcpy.CopyRows_management(FabricTable_View, jobs, "")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Error message received when the above code was run:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "R:\DanN\b4after\fug.py", line 18, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeParcelFabricTableView_fabric(Basemap_DBO_Fabric, "Jobs", FabricTable_View)&lt;BR /&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\fabric.py", line 250, in MakeParcelFabricTableView&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;BR /&gt;arcgisscripting.ExecuteError: ERROR 999999: Error executing function.&lt;BR /&gt;Failed to execute (MakeParcelFabricTableView).&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 20:34:29 GMT</pubDate>
    <dc:creator>DanNarsavage</dc:creator>
    <dc:date>2021-12-11T20:34:29Z</dc:date>
    <item>
      <title>Using MakeParcelFabricTableView to get the JobObjects table?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/using-makeparcelfabrictableview-to-get-the/m-p/463198#M15568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm writing a Python script and I need to find all of the parcels that were edited in a particular job (in case it makes any difference, the job will always have been committed before I perform this task).&amp;nbsp; I'd planned on using the "MakeParcelFabricTableView_fabric()" GP tool, but it doesn't appear that that tool will get me to the JobObjects table.&amp;nbsp; Am I going to have to open a separate ODBC connection to our database just to get this table, or is there a way to get there using the GP tools that I've missed?&amp;nbsp; Alternatively, is there another place that I can get a list of parcels in a job? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your pal,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 13:40:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/using-makeparcelfabrictableview-to-get-the/m-p/463198#M15568</guid>
      <dc:creator>DanNarsavage</dc:creator>
      <dc:date>2011-02-03T13:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using MakeParcelFabricTableView to get the JobObjects table?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/using-makeparcelfabrictableview-to-get-the/m-p/463199#M15569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For that matter, has anyone successfully run the "MakeParcelFabricTableView" tool in Python at all?&amp;nbsp; I just created &amp;amp; successfully ran a model using that tool, but exported that model to a python script and got an error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Python code exported from successful model:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# ---------------------------------------------------------------------------
# fug.py
# Created on: 2011-02-03 08:28:07.00000
#&amp;nbsp;&amp;nbsp; (generated by ArcGIS/ModelBuilder)
# Description: 
# ---------------------------------------------------------------------------

# Import arcpy module
import arcpy


# Local variables:
Basemap_DBO_Fabric = "Database Connections\\DefaultOnBasemap.sde\\Basemap.DBO.ParcelFabric\\Basemap.DBO.Fabric"
FabricTable_View = "FabricTable_View"
jobs = "C:\\Dan\\TurdPolishing.gdb\\jobs2"

# Process: Make Parcel Fabric Table View
arcpy.MakeParcelFabricTableView_fabric(Basemap_DBO_Fabric, "Jobs", FabricTable_View)

# Process: Copy Rows
arcpy.CopyRows_management(FabricTable_View, jobs, "")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Error message received when the above code was run:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "R:\DanN\b4after\fug.py", line 18, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeParcelFabricTableView_fabric(Basemap_DBO_Fabric, "Jobs", FabricTable_View)&lt;BR /&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\fabric.py", line 250, in MakeParcelFabricTableView&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;BR /&gt;arcgisscripting.ExecuteError: ERROR 999999: Error executing function.&lt;BR /&gt;Failed to execute (MakeParcelFabricTableView).&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:34:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/using-makeparcelfabrictableview-to-get-the/m-p/463199#M15569</guid>
      <dc:creator>DanNarsavage</dc:creator>
      <dc:date>2021-12-11T20:34:29Z</dc:date>
    </item>
  </channel>
</rss>

