The script you suggest works well when a user is working with only one table. But I've been trying to change the name of a specific column within one of several tables open, and cannot find guidance within the Scripting Index. What would the JSL syntax be for this scenario?
Example
I am working with two tables (Cdt1 and Cdt2) and Cdt1 has a column with name "value" that I want to change to "Fault code"
I've tried to select the "value" column first before changing the name, but that didn't help.
Cdt1 << Select Columns("value");
Column("value") << Set Name( "Fault code" );
My other attempt was worse...
Cdt1 << Columns("value") << Set Name ("Fault code");
Either way, I haven't been successful after a while of trying and looking for guidance. Any help would be appreciated.