I want to add a field to my table in the FieldCalculator.
import arcpy
arcpy.AddField_management("veg8", "test", "TEXT")
An error message occured doing this and I figured out that I need to set a path to my table Like this for instance
C:\\user\\...
But, since I work in the Modelbuilder and the Model will be running on other computers, the path to the table will be a different one and I dont want to update all my paths everytime I run the model on a different computer. Is there a way to tell python to use the table to which the FieldCalculator is "connected"?
Thanks Chris