I want to rename a column from its Name in DAC at the place it is reference, the ID field is part of DAC while the Name field is reference by the main DAC using Table__Field in the Grid, How that can be renamed, I tried the Below code but it is not working for reference column "ABCOrder.Status" which is link with AMProdItem on ABCOrder.CodeID, Note- rename worked for AMProdItem.StatusID but not for ABCOrder.status
public override void Initialize() {
PXUIFieldAttribute.SetDisplayName<ABCOrder.status>(Base.ProdOperRecords.Cache, "QCO Status");
PXUIFieldAttribute.SetDisplayName<AMProdItem.statusID>(Base.ProdOperRecords.Cache, "Order Status");
}