All,
I am developing a script to be ran in the python window in Pro. Currently the arcpy.management.Append is giving me trouble. One particular field needs ported over. Since the name of the fields do not match i am trying to use field mapping. The append works in general but I have been unable to get field mapping working despite trying to copy the syntax the documentation hade in the examples. It just put nulls in the field I am trying to specify. currently my code is:
disolved_file = r"C:\\Path\to\the\document\on\PC\MyProject43.gdb\input_for_append"
Sweeping_FL=r"Path_to_web_feature\\web_feature_2022"
feild_match = [["Name","Fullname"]]
arcpy.management.Append(disolved_file, Sweeping_FL, "NO_TEST", match_fields = feild_match )
yes I have permissions to update the web file.
the Name field belongs to web_feature_2022, while the Fullname belongs to input_for_append.
I have tried putting the [["Name","Fullname]] directly in the into call for the arcpy.management.Append but that had the same result.
Arc pro 3.3
thanks