Résumé
Lists the fields in a versioned feature class or table that have field conflict filters applied. The returned list is a list of field names.
Syntaxe
ListFieldConflictFilters (table)
Paramètre | Explication | Type de données |
table | Input geodatabase table or feature class. | String |
Valeur renvoyée
Type de données | Explication |
String | A list containing strings for each field name that has conflict filters applied is returned. |
Exemple de code
ListFieldConflictFilters example
List field conflict filters.
import arcpy
# Get a list of fields with conflict filters applied and print the name.
filteredFields = arcpy.da.ListFieldConflictFilters('Database Connections/municipal.sde/Primary_UG')
for field in filteredFields:
print(field)