JSL: close data table not responding
Hi,
I have three opened data tables defined by dt_pp, dt_pp_t, dt_final and I want to close them. My script contains the following lines:
Close( dt_pp, No Save );
Close( dt_pp_t, No Save );
Close(dt_final, No Save);
If I run the whole script, it closes the two first data tables and not the last one. But if I select this particular line and run it, it works and the table closes.
What am I doin...