All, I'm creating a python script that creates a version in SDE, makes a bunch of edits in that version, and reconciles. If no conflicts are found then I want it to post to default, delete the version, and leave me alone. If it finds conflicts then I want it to skip the post, not delete the version, and yell at me. Using this doc, I wrote this line:arcpy.ReconcileVersion_management(SdeGDB, VersionName, "sde.DEFAULT", "BY_OBJECT", "FAVOR_TARGET_VERSION", "NO_LOCK_ACQUIRED", "ABORT_CONFLICTS", "POST")
But the doc referenced above doesn't specify what exactly happens in an "abort" when conflicts are found. Is an exception thrown? Or does the geoprocessor simply avoid posting and silently move on? I'll likely run my script on a test dataset and have an answer for myself, but I think this needs some clarification in the doc . . .Thanks,Dan