I have a simple script that I think would automate this task, it runs but I dont see any changes in the field properties...
>>> fieldList = arcpy.ListFields(path to the feature class)
>>> for field in fieldList:
... field.isNullable = False
any ideas?
>>> fieldList = arcpy.ListFields(path to the feature class)
>>> for field in fieldList:
... field.isNullable = False
any ideas?