Hello everyone,
I need to append a polygon layer located in a FGDB to the same layer located in SDE.
arcpy.Append_management(FGDB__Layer, SDE_Layer , "TEST", "", "") fails because the structure is not the same. Polygon layers in FGDB have 2 additional fields SHAPE.AREA and SHAPE.LENGTH
I need to use "NO_TEST" on the schema_type
arcpy.Append_management(FGDB__Layer, SDE_Layer , "NO_TEST", ??????, "")
How do I create the field_mapping list?
Thanks