How does JSL's sorting operation not create a new window?
The result of sorting will not create a new window.But the same sort operation using the following JSL will produce a new window to display the sorted results.How do you make a JSL sorting operation not generate a new window?thank you!
dt = Current Data Table();
dt<<Sort(By(4),Order(descending));