Hi,
I want to change display name of "Start Date" in activity. I tried to edit that field but it is locked. How is it possible to change the display name?
In which activity type you are trying to change the display name ?
Have you checked the field property to verify that the field is locked by any other person ?
Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question.
Change it using JS:-
var affectedControl = Xrm.Page.ui.controls.get("actualstart"); affectedControl.setLabel("New Label");
Regards Faisal