At least two of the projects are currently underway would greatly benefit from the ability to use the Toolbox to perform a rename. Is there a reason this is not supported or a way to make this work?
Thanks,
Ron
hougaard Answered question May 21, 2025
That will not update relations in other tables as rename normally do…
hougaard Answered question May 21, 2025
Because Rename is not directly supported for recordrefs
As a workaround, you can do:
Rec2.Copy(Rec1);
Rec.Primarykey := newvalue;
Rec2.Insert();
Rec1.Delete();
hougaard Answered question May 21, 2025