I have a Shutdown Python script that is working well overall. I am having an issue when it tries to use the Esri Calculate Field tool. The string that is used to calcualte the field comes from a published parameter in the workspace. The only way that I have been able to get it to work is to put double quotes aroung the input value on the FME Server page. Otherwise it fails and will not update the field.
Is it possible to convert this:
Enter_the_Image_Name = fme.macroValueso'Image_Name'] so that when I run this:
arcpy.CalculateField_management(Imagery_Mosaic_Layer, "Image_Name",Enter_the_Image_Name, "Python", "")
that Enter_the_Image_Name is seen as a string? Currently the process fails if I don't use double quotes.
Thanks,
Vince