Hi there. Can anyone think of what is happening here or recommend troubleshooting steps?
I have a script that (among other things):
-overwrites a feature class from a SQL table
-converts labels on that feature to annotation in a GDB:
arcpy.cartography.ConvertLabelsToAnnotation(mCSM, 250, outGDBAnno, 'Anno', None, None, None, 'STANDARD', None, None, 'GroupAnnoVB', 'SINGLE_LAYER', 'VB', 'FEATURE_CLASS_PER_FEATURE_LAYER', 'NO_MERGE_LABEL_CLASS')
...this throws ERROR 000840: The value is not a Feature Layer when run at 2.9.
The feature class is valid and I can export annotations from with that code outside a script. But the command fails when run in the script.
Has anything changed at 2.9 that would have any affect on this script?
Thanks!