I've got a python script that I inherited. The python script takes input from a variety of feature classes and tables and spit it out to a single table. When I run this script via a scheduling utility at night, the script fails when it prompts for user input on whether it's OK to proceed with a truncated field name with a field calculation. For a variety of reasons, I can't change the field name. Is there a way to suppress the input box via code? I looked in arcpy.env but I didn't see anything...any ideas are welcome! thanks!
arcpy.CalculateField_management(Merged__2_, "L1_Parcel_Nbr", "[PropID]", "VB")
where Merged_2_ is the output (file geodatabase) feature class from a merge geoprocessing function.