Dear Python
is there a way how to via Python set Layer name alias in FGDB? In ArcPy it seems that this is still missing. CIM properties just works on aliases on fields, and I don´t see any way how to change the Alias for the layer name itself.
My use case is: I am copying lot of layer from SDE to FGDB via arcpy.CopyFeatures_management(path to origin layer, path to FGDB layer), unfortunately the alias of the of the SDE layer is not copied to FGDB layer (maybe because the FGDB layer has different name than the origin one), and I am unable to reach the alias with python.
Thank you,
Vladimir
Solved! Go to Solution.
Does this do what you want? AlterAliasName—ArcGIS Pro | Documentation
Does this do what you want? AlterAliasName—ArcGIS Pro | Documentation
Dear Joe Borgione,
this is exactly what I search for. Thank you. I had to overlooked this in documentation.
Thank you!