Summary
Removes a field conflict filter for a given field in a geodatabase table or feature class.
Field conflict filters can be applied to versioned tables or feature classes to prevent conflicts from being identified when the same attribute is updated in the parent and child versions. Field conflict filters only apply for reconciles in which conflicts are defined by attribute.
Usage
When running from the tool dialog, only fields that already have filters applied will be displayed.
The ArcPy function arcpy.da.ListFieldConflictFilters can be used to identify fields that have filters applied.
Syntax
arcpy.management.RemoveFieldConflictFilter(table, fields)
Parameter | Explanation | Data Type |
table | Table or feature class containing the field or fields to be removed as conflict filters. | Table View |
fields [fields,...] | Field or list of fields to be removed as conflict filters. | Field |
Derived Output
Name | Explanation | Data Type |
out_table | The updated input dataset. | Table View |
Code sample
The following Python window script demonstrates how to use the RemoveFieldConflictFilter in immediate mode to remove a single conflict filter from the phase field.
import arcpy
arcpy.env.workspace = "c:/Connections/airport.sde"
arcpy.RemoveFieldConflictFilter_management("Primary_UG", "phase")
The following Python window script demonstrates how to use the RemoveFieldConflictFilter in immediate mode to remove conflict filters from multiple fields at once.
import arcpy
arcpy.env.workspace = "d:/Connections/airport.sde"
arcpy.RemoveFieldConflictFilter_management("Primary_UG", ["phase", "material"])
Environments
Licensing information
- Basic: No
- Standard: Yes
- Advanced: Yes