Error in using arcpy.SetParameterAsText

1715
5
Jump to solution
03-22-2018 09:45 AM
JustinBridwell
New Contributor II

Hey All,

     I am trying to create a derived output using a Python script. when I run the script, I keep getting the following error:

"RuntimeError: Object: Error in setting parameter as text". I have an output folder that is an input (outFolder). I basically want to use that same folder as an output once the script has run so that I can use it in a model.

My parameters are set up like this: 

input_FC = arcpy.GetParameterAsText(1)
inField = arcpy.GetParameterAsText(2)
theFName = arcpy.GetParameterAsText(3)
outFolder = arcpy.GetParameterAsText(4)
output = arcpy.SetParameterAsText(5, outFolder)
script = sys.argv[0]

I have tried several variations of SetParameterAsText, including:

        outFolder = arcpy.SetParameterAsText(5, "outFolder")

        and

        arcpy.SetParameterAsText(5, outFolder)

         

My parameter named "output" is configured as such in the script tool properties:

Screenshot of my parameter settings

It is set to derived so that it will appear as an output in a model and obtained from the input parameter, outFolder (Named Feature Class in the parameter settings above). What am I doing wrong here?

0 Kudos
1 Solution

Accepted Solutions
VishalShah2
Occasional Contributor II

My first thought to solve this is have the first parameter as text set with an index of 0.

input_FC = arcpy.GetParameterAsText(0)
inField = arcpy.GetParameterAsText(1)
theFName = arcpy.GetParameterAsText(2)
outFolder = arcpy.GetParameterAsText(3)
output = arcpy.SetParameterAsText(4, outFolder)
script = sys.argv[0]

See if that solves it.

View solution in original post

5 Replies
VishalShah2
Occasional Contributor II

My first thought to solve this is have the first parameter as text set with an index of 0.

input_FC = arcpy.GetParameterAsText(0)
inField = arcpy.GetParameterAsText(1)
theFName = arcpy.GetParameterAsText(2)
outFolder = arcpy.GetParameterAsText(3)
output = arcpy.SetParameterAsText(4, outFolder)
script = sys.argv[0]

See if that solves it.

XanderBakker
Esri Esteemed Contributor

You should start numbering with 0, not 1. Index number 5 does not exist. 

JustinBridwell
New Contributor II

Hey Guys- You are both absolutely correct. For whatever reason, I thought that arcpy.SetParameterAsText started its index at 1. This was the crux of my whole problem. It works beautifully now. Thanks so much.

ADEBOLAHASSAN
New Contributor

Hello Justin, i have the same problem now and i have to input it in my thesis defense next week, is it possible to see what the whole of your script looks like?

Thanks

Adebola

0 Kudos
VishalShah2
Occasional Contributor II

What exactly seems to be your problem? Post the script here and what your script tool parameters look like.

0 Kudos