I am trying to add a new attribute to a feature class in CMDM Geodatabase. This attribute is going to be FEATID, I tried to use AttributeManager, and the user attributes in writer properties but none of them worked. I tried to use PythonCaller with the code below but I could not get any result:
----------------------------------
import arcpy
RoadCentreline = "C:\\Users\\akinc\\Desktop\\dellMe\\CMDM2.3.3.gdb\\ReferenceData\\RoadCentreline"
Add Field arcpy.AddField_management(RoadCentreline, "featID", "LONG", "", "", "", "", "NULLABLE", "NON_REQUIRED", "")-----------------------------------
This is the workbench: