<?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: Python Toolbox Derived Output Issues in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427358#M33598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, in Anch.&amp;nbsp; Check out the &lt;A href="https://community.esri.com/group/1179"&gt;Alaska GIS Users&lt;/A&gt; if you haven't already.&amp;nbsp; Not real active yet, but it can be a complimentary site to the Alaska Arc User group&amp;nbsp; and other local user groups.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw, I can see using a python toolbox if the items are proprietary. Not much of my development is, and I try not to over complicate things if I can help it.&amp;nbsp; I'll follow you here on geonet, that will allow you to direct message me. I can send you me email that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jan 2016 07:02:06 GMT</pubDate>
    <dc:creator>RebeccaStrauch__GISP</dc:creator>
    <dc:date>2016-01-13T07:02:06Z</dc:date>
    <item>
      <title>Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427346#M33586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating a python toolbox in ArcGIS 10.1 and have a python script working as a stand-along script but when I try to bring it into a python toolbox the tool does OK at creating an output XYZ event theme layer with the arcpy.MakeXYEventLayer_management tool and then I do create an output fc using arcpy.FeatureClassToFeatureClass_conversion which does create the fc on disk but when I try to use this fc as input in the next process to create a new fc that uses filter (sql_where_clause) the tool can not recognize the input fc that was just created on disk.&amp;nbsp; I am new at python toolboxes and think it is likely that I am not using the tools parameters properly. After having read all of the forums etc. that I could find I still am no closer to figuring this out. When I hard code the fc paths and use those as inputs into the next tool I use in the process the code can complete OK albeit not getting it using dynamic parameters.&amp;nbsp; The majority of the code I am using is below. Any suggestions about how to use the python toolbox parameters correctly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;class Toolbox(object):
&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Define the toolbox (the name of the toolbox is the name of the
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .pyt file)."""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.label = "Toolbox"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.alias = ""

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # List of tool classes associated with this toolbox
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.tools = [Tool_Test]


class Tool_Test(object):
&amp;nbsp;&amp;nbsp;&amp;nbsp; def __init__(self):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Define the tool (tool name is the name of the class)."""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.label = "Tool"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.description = ""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.canRunInBackground = False

&amp;nbsp;&amp;nbsp;&amp;nbsp; def getParameterInfo(self):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Define parameter definitions"""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; params = None
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Define well location input csv file parameter definitions"""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # First parameter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; param0 = arcpy.Parameter(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; displayName="Input File",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name="in_file",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datatype="DEFile",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameterType="Required",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; direction="Input")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # To define a file filter that includes .csv and .txt extensions,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp; set the filter list to a list of file extension names
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; param0.filter.list = ['txt', 'csv']


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Second parameter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Define derived well track fc parameter definitions"""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; param1 = arcpy.Parameter(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; displayName="Output Well Track Features",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name="out_fc_well_track",
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datatype="GPFeatureLayer",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datatype="DEFeatureClass",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameterType="Derived",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; direction="Output")

##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; param1.parameterDependencies = [param0.name]


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Third parameter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Define derived well fc parameter definitions"""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; param2 = arcpy.Parameter(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; displayName="Output Well Features",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name="out_fc",
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datatype="GPFeatureLayer",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datatype="DEFeatureClass",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameterType="Derived",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; direction="Output")

##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; param2.parameterDependencies = [param0.name]


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #add each param to list
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; params = [param0, param1]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; params = [param0, param1, param2]

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return params

&amp;nbsp;&amp;nbsp;&amp;nbsp; def isLicensed(self):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Set whether tool is licensed to execute."""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return True

&amp;nbsp;&amp;nbsp;&amp;nbsp; def updateParameters(self, parameters):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Modify the values and properties of parameters before internal
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; validation is performed.&amp;nbsp; This method is called whenever a parameter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; has been changed."""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return

&amp;nbsp;&amp;nbsp;&amp;nbsp; def updateMessages(self, parameters):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """Modify the messages created by internal validation for each tool
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameter.&amp;nbsp; This method is called after internal validation."""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return

&amp;nbsp;&amp;nbsp;&amp;nbsp; def execute(self, parameters, messages):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; """The source code of the tool."""
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # set local variables
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XY_Layer = 'in_file'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_fc_well_track = 'out_fc_well_track'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_fc = 'out_fc'

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # get input_fc name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if parameters[0] != None:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inCSV_file = parameters[0].valueAsText
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; in_file_name = os.path.splitext(os.path.basename(inCSV_file))[0]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("in_file_name: " + in_file_name)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Validate the output name so it is valid
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; well_fc_name = arcpy.ValidateTableName(in_file_name)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("input name validated: " + well_fc_name)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_fc_well_track = well_fc_name + "_well_track"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if arcpy.Exists(out_fc_well_track):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Delete_management(out_fc_well_track)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if arcpy.Exists(well_fc_name):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Delete_management(well_fc_name)


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Start XYZ Tool...")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Make the XY event layer...
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ##&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeXYEventLayer_management(inCSV_file, x_coords, y_coords, XY_Layer, sr_In, z_coords)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeXYEventLayer_management(inCSV_file, "X_usft", "Y_usft", XY_Layer, sr_In, "TVD_usft")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # create well track fc
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SetParameter(1,out_fc_well_track)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Start FC to FC Tool...")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.FeatureClassToFeatureClass_conversion(XY_Layer, out_wrk_spc, out_fc_well_track)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SetParameter(1,out_fc_well_track)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Completed FC to FC Tool..." + out_fc_well_track)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # create well fc
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_fc = well_fc_name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SetParameter(2,out_fc)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delimitedField = arcpy.AddFieldDelimiters(out_wrk_spc, where_field)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sql_where = delimitedField + " IN('SHL', 'TPH', 'BHL')"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("sql_where clause: " + sql_where)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # using sql query to filter out SHL, TPH, and BHL from well track fc
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # TODO: remove hard code and use paramaters as intended...
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_fc_well_track = r'O:\Alaska\GIS\cook_inlet\maps\MRA\Code\TRS_Distances\data\MTRS_wells.gdb\SCU_322C_04_WP04___GIS_Format_well_track'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.FeatureClassToFeatureClass_conversion(out_fc_well_track, out_wrk_spc, out_fc, sql_where)
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SetParameter(2,out_fc)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Completed FC to FC Tool..." + out_fc)


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # TODO: remove hard code and use paramaters as intended...
##&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_fc = r'O:\Alaska\GIS\cook_inlet\maps\MRA\Code\TRS_Distances\data\MTRS_wells.gdb\SCU_322C_04_WP04___GIS_Format'


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Print the total rows
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if int(arcpy.GetCount_management(out_fc)[0]) == 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddError("{0} has no features.".format(out_fc))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage('ERROR occurred because SHL, TPH, or BHL were not found in input file' )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage('Unable to continue! Please correct ERROR!' )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise arcpy.ExecuteError
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage(out_fc + " has feature count of: " +&amp;nbsp; str(arcpy.GetCount_management(out_fc)))

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # add Well_Desc column
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Adding 'Well_FC' field to well fc...")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management(out_fc, field_name, "TEXT", field_length=50)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # update the new Well_Desc field
#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateWell_Desc(out_fc)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Updated Well_Desc column!")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:14:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427346#M33586</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T19:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427347#M33587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, the question is: &lt;/P&gt;&lt;P&gt;How do you use the parameters properly when your XYZ input file creates a featureclass OK and to use that new fc created by the&amp;nbsp; arcpy.FeatureClassToFeatureClass_conversion tool as input into one more arcpy.FeatureClassToFeatureClass_conversion tool that is using a filter to create the next fc per the sql_where clause.&lt;/P&gt;&lt;P&gt;The first fc IS being created on disk but not recognized by the tool and throws an error that the "input parameters are not valid" for the next tool process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 02:50:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427347#M33587</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-01-12T02:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427348#M33588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is would be useful to show the messages that are produced to help isolate the place that is causing the bottle neck. You have and input xyz file, I thought copyfeatures would be the next tool to use, followed by a ffeaatureclasstofeatureclass since it has the sql query.&amp;nbsp; I would have expected a not found error rather than an input parameters not valid error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 06:26:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427348#M33588</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-01-12T06:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427349#M33589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael, Just out of curiosity, is there a reason why you are making a python toolbox and not just a python addin from a custom toolbox?&amp;nbsp; The main argument that I've heard for a python toolbox is if you need a pop up dialog (not just the tool dialog) or need to interact with the ArcMap display, otherwise I haven't found a need.&amp;nbsp; one issues however is adding won't work with Pro, but the custom toolbox/tools you create should.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,Personally I like the simplicity of creating the addins. If you have your script working as a standalone, do you mean that you have the script working as a tool, in a toolbox already?&amp;nbsp; If so, I have some steps for moving that into an addin That may help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for your error, I'm working with similar command right now in the scrip I am writing (i.e., selects, output, stinging output to input, etc) and when I've received the error you mentioned, it typically is because either it wants a Layer instead of a feature class, or vice versa.. It may help if you show the full error you are getting. I typically need to read between the lines to figure out the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 06:36:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427349#M33589</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2016-01-12T06:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427350#M33590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or simpler still &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/a-quick-tour-of-creating-script-tools.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/a-quick-tour-of-creating-script-tools.htm"&gt;What is a script tool?—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&amp;nbsp; since you already know what tools you are using and you have easier control on defining the input/outparameters and their derivation etc.&amp;nbsp; You can easily use the results from the Results window to develop the script logic and ultimately the tool which you use in arctoolbox.&amp;nbsp; There is less code, it is all python and it is easier on error checking. Basically you are using system tools (including the sql) and this &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/a-quick-tour-of-creating-tools.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/a-quick-tour-of-creating-tools.htm"&gt;A quick tour of creating custom tools—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp; suggests that a pure python script of a simple tool would be the easiest since you don't require any interaction with the dataframe and you are using only system scripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addendum&lt;/P&gt;&lt;P&gt;Have a look at &lt;A href="http://desktop.arcgis.com/en/desktop/latest/guide-books/python-addins/what-is-a-python-add-in.htm" title="http://desktop.arcgis.com/en/desktop/latest/guide-books/python-addins/what-is-a-python-add-in.htm"&gt;What is a Python add-in?—Help | ArcGIS for Desktop&lt;/A&gt; to help you decide what type of "tool" you really need.&amp;nbsp; The little section Knowing When to create a python add-in might help you decide which route to go&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 06:54:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427350#M33590</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-01-12T06:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427351#M33591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error I see when the tool fails is:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 651, in execute&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\conversion.py", line 1547, in FeatureClassToFeatureClass&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;/P&gt;&lt;P&gt;ExecuteError: Failed to execute. Parameters are not valid.&lt;/P&gt;&lt;P&gt;ERROR 000732: Input Features: Dataset HVB_17_GIS_Format_well_track does not exist or is not supported&lt;/P&gt;&lt;P&gt;Failed to execute (FeatureClassToFeatureClass).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This occurs after the first FeatureClassToFeatureClass_conversion created output on disk but when I use that fc as input to the next FeatureClassToFeatureClass_conversion it doesn't recognize the newly created fc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main reason I am trying to get this script into a tool is so that I can have other GIS users I work with use it as they are not python compatible&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 07:34:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427351#M33591</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-01-12T07:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427352#M33592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the logic and the script working OK as a stand-alone but just trying to get it into a tool for other users to use. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 07:36:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427352#M33592</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-01-12T07:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427353#M33593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the addendum I just added, it sounds like a conventional tool is all you need.&amp;nbsp; You can use the results of a manual run through your steps since they ae recorded in the Results window&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migration-blogpost/1900"&gt;"You are not allowed to use Modelbuilder": When Instructors need to get smarter&lt;/A&gt;&lt;/P&gt;&lt;P&gt; &lt;A href="https://community.esri.com/migration-blogpost/1912"&gt;"You are not allowed to use Geoprocessing Results... ":  The Students get smarter&lt;/A&gt; &lt;/P&gt;&lt;P&gt;It is easy to define your own parameters in a toolbox.&amp;nbsp; This link explains the differences between script tools and python tools.&amp;nbsp; the former is easier and is usually a first step from using modelbuilder or the Results window.&amp;nbsp; Creating a fully fledged python tool requires a need that a conventional tool in arctoolbox (or one of your own) wont provide&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/a-quick-tour-of-creating-script-tools.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/a-quick-tour-of-creating-script-tools.htm"&gt;What is a script tool?—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 07:46:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427353#M33593</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-01-12T07:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427354#M33594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;You can easily share python addins with others (again, not ArcGIS Pro or per-10.1 I think). Besides all the links Dan provided..if you &lt;/P&gt;&lt;P&gt;1) use &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/managing-tools-and-toolboxes/creating-a-custom-toolbox.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/managing-tools-and-toolboxes/creating-a-custom-toolbox.htm"&gt;Creating a toolbox—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&amp;nbsp; to create you own toolbox in a location of your choice&lt;/P&gt;&lt;P&gt;2) use &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/managing-tools-and-toolboxes/adding-tools.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/managing-tools-and-toolboxes/adding-tools.htm"&gt;Adding tools to a toolbox—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; and &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/adding-a-script-tool.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/adding-a-script-tool.htm"&gt;Adding a script tool—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; and &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/setting-script-tool-parameters.htm" title="http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/setting-script-tool-parameters.htm"&gt;Setting script tool parameters—Help | ArcGIS for Desktop&lt;/A&gt;​ &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; to add your standalone script to you new toolbox...setting up you parameters there,&lt;/P&gt;&lt;P&gt;3) once you get you toolbox the way you want, look over my tips &lt;A href="https://community.esri.com/thread/74093"&gt;Tip: Python Addin - getting custom tools/toolbox to work - GPToolDialog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting up parameters thru the script dialog is easier (in my opinion) then the way you are trying to do it.,&amp;nbsp; Once the variables are setup, they can be used thru out the tool.&amp;nbsp; Once it works and you create the addin, you can give the .addin file to anyone and they should be able to double click it to install.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 17:08:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427354#M33594</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2016-01-12T17:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427355#M33595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to get my script to run as a custom python toolbox (.tbx). I finally got the parameters right as it was much more straight forward than the python toolbox seems to be which I tried first. I will probably try again with the python toolbox but for right now I am going to give that a rest. &lt;/P&gt;&lt;P&gt;Thanks for your efforts and responses.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 03:53:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427355#M33595</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-01-13T03:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427356#M33596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you were able to resolve the issue.&amp;nbsp; Don't forget to mark and answers that were helpful (if any) and mark one as the answer, or if no answer, as "assumed answered" (not usually good to mark your own as an answer unless you write a summary that others can use to do the same).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 03:58:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427356#M33596</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2016-01-13T03:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427357#M33597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rebbecca,&amp;nbsp; I pretty much muddle through until I hit upon the right syntax and parameters.What I posted&lt;/P&gt;&lt;P&gt;was actually only the execute def from a much larger script. It all works at an acceptable level now. Most of the code I wrote is proprietary to one degree or another so I didn't want to post everything.&lt;/P&gt;&lt;P&gt;I see you are in AK too.&amp;nbsp; If you want to see the full script I could email it to you if you want to share your email address if that is kosher.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 05:29:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427357#M33597</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-01-13T05:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Python Toolbox Derived Output Issues</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427358#M33598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, in Anch.&amp;nbsp; Check out the &lt;A href="https://community.esri.com/group/1179"&gt;Alaska GIS Users&lt;/A&gt; if you haven't already.&amp;nbsp; Not real active yet, but it can be a complimentary site to the Alaska Arc User group&amp;nbsp; and other local user groups.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw, I can see using a python toolbox if the items are proprietary. Not much of my development is, and I try not to over complicate things if I can help it.&amp;nbsp; I'll follow you here on geonet, that will allow you to direct message me. I can send you me email that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 07:02:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-derived-output-issues/m-p/427358#M33598</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2016-01-13T07:02:06Z</dc:date>
    </item>
  </channel>
</rss>

