<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: JSL: close data table not responding in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55218#M31219</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/10796"&gt;@Aziza&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Maybe you could make the tables current before trying to close them ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Current Data Table(dt_pp); 
Close(dt_pp,"No Save"); 
Current Data Table(dt_pp_t); 
Close(dt_pp_t,"No Save");&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Current Data Table(dt_final); 
Close(dt_final,"No Save"); &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 14:54:43 GMT</pubDate>
    <dc:creator>uday_guntupalli</dc:creator>
    <dc:date>2018-04-18T14:54:43Z</dc:date>
    <item>
      <title>JSL: close data table not responding</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55203#M31208</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have three opened data tables defined by &lt;SPAN&gt;&lt;FONT color="#3366FF"&gt;dt_pp,&amp;nbsp;dt_pp_t,&amp;nbsp;dt_final&lt;/FONT&gt;&amp;nbsp;&lt;/SPAN&gt;and I want to close them. My script contains the following lines:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Close( dt_pp, No Save );
Close( dt_pp_t, No Save );
Close(dt_final, No Save);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What am I doing wrong/missing here?&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 13:18:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55203#M31208</guid>
      <dc:creator>Aziza</dc:creator>
      <dc:date>2018-04-18T13:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: close data table not responding</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55218#M31219</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/10796"&gt;@Aziza&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Maybe you could make the tables current before trying to close them ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Current Data Table(dt_pp); 
Close(dt_pp,"No Save"); 
Current Data Table(dt_pp_t); 
Close(dt_pp_t,"No Save");&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Current Data Table(dt_final); 
Close(dt_final,"No Save"); &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 14:54:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55218#M31219</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2018-04-18T14:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: close data table not responding</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55225#M31225</link>
      <description>&lt;P&gt;From your file names, I wonder, if your second file might be linked or still being used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example if the second file (dt_pp_t) was a summary of the first (dt_pp), closing dt_pp will automaticaly close dt_pp_t and the second close statement might cause an error, and the third statement is not run.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you run your script, look at the log file (CTRL + Shift + L) to see if there is an error statement; that might help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You did not state if you were running your script interactively, or scheduled/batch.&amp;nbsp; If a JSL statement results in a prompt when running interactively, when running remote/batch, the script will end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just a few ideas on where&amp;nbsp; to look.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 17:45:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55225#M31225</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-04-18T17:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: close data table not responding</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55357#M31318</link>
      <description>Thank you!</description>
      <pubDate>Mon, 23 Apr 2018 06:38:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-close-data-table-not-responding/m-p/55357#M31318</guid>
      <dc:creator>Aziza</dc:creator>
      <dc:date>2018-04-23T06:38:14Z</dc:date>
    </item>
  </channel>
</rss>

