<?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 to suppress &amp;quot;Download Data Completed&amp;quot; notification on HTTP Request in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906499#M106492</link>
    <description>&lt;P&gt;Looks like it!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Michael_MXAK_0-1759927908150.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84599iE117EE77BE7FF265/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Michael_MXAK_0-1759927908150.png" alt="Michael_MXAK_0-1759927908150.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Oct 2025 12:52:03 GMT</pubDate>
    <dc:creator>Michael_MXAK</dc:creator>
    <dc:date>2025-10-08T12:52:03Z</dc:date>
    <item>
      <title>JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906326#M106471</link>
      <description>&lt;P&gt;I am using `New HTTP Request` to paginate through a RESTful API. I expect many pages and have a fairly small page size limit, so I've written code to load the pages in chunks. My issue is that this loop requires occasional user interaction due to a pop-up reading "Download data completed.":&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Michael_MXAK_0-1759853189216.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84525iF3C39D4273B93A01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Michael_MXAK_0-1759853189216.png" alt="Michael_MXAK_0-1759853189216.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This doesn't always happen, and I haven't been able to divine why it only sometimes occurs. Even with a consistent page size, some pages will require the user clicks OK and some won't, which is annoying because it's a long-running process to load everything. Is there a way to suppress this? We're running JMP 18.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 16:09:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906326#M106471</guid>
      <dc:creator>Michael_MXAK</dc:creator>
      <dc:date>2025-10-07T16:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906335#M106474</link>
      <description>&lt;P&gt;I'm not sure if using&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Batch Interactive(1) &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;would work for that. Just remember to return it back to with&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;batch interactive(0);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;after all the downloads have been completed&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 17:26:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906335#M106474</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-07T17:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906336#M106475</link>
      <description>&lt;P&gt;Thanks for the tip! I can't find this in the scripting index, would it be used like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Batch Interactive(1);
for(i=1, i&amp;lt;=n_pages, i++,
    load_page_stuff_here();
);
Batch Interactive(0);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 17:30:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906336#M106475</guid>
      <dc:creator>Michael_MXAK</dc:creator>
      <dc:date>2025-10-07T17:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906337#M106476</link>
      <description>&lt;P&gt;I found it laid out as stated in the JSL Syntax Reference, trying it now.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 17:32:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906337#M106476</guid>
      <dc:creator>Michael_MXAK</dc:creator>
      <dc:date>2025-10-07T17:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906364#M106477</link>
      <description>&lt;P&gt;Seems like it's working! I think! I'm deploying it to users and will see if anyone reports the issue persists. Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 19:40:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906364#M106477</guid>
      <dc:creator>Michael_MXAK</dc:creator>
      <dc:date>2025-10-07T19:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906420#M106485</link>
      <description>&lt;P&gt;I think you can find a note in the log window with the same words from the suppressed dialog when it works.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 00:45:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906420#M106485</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2025-10-08T00:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906433#M106487</link>
      <description>&lt;P&gt;This is simple demonstration how JMP Alert is suppressed&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

Batch Interactive(1);
Throw("This is a test");&lt;BR /&gt;Batch Interactive(0);&amp;nbsp;//&amp;nbsp;won't&amp;nbsp;execute&amp;nbsp;as&amp;nbsp;Throw&amp;nbsp;stops&amp;nbsp;the&amp;nbsp;script&lt;BR /&gt;Show("Here!");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Compared to this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

Batch Interactive(0);
Throw("This is a test");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The message which was suppressed will be visible in the log (like Craige noted) but I'm not sure if it can be captured. At least with Throw() (might be different in other cases) Log Capture() will allow the script to continue execution for some reason&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

Batch Interactive(1);
lc = Log Capture(
	Throw("This is a test");
);
Batch Interactive(0);&amp;nbsp;//&amp;nbsp;won't&amp;nbsp;execute&amp;nbsp;as&amp;nbsp;Throw&amp;nbsp;stops&amp;nbsp;the&amp;nbsp;script
Show("Here!");
Show(lc);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Oct 2025 04:55:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906433#M106487</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-08T04:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906448#M106490</link>
      <description>&lt;P&gt;So,&amp;nbsp;&lt;BR /&gt;a) &lt;FONT face="courier new,courier"&gt;Log Capture()&lt;/FONT&gt; "steals" the response from the log&lt;/P&gt;
&lt;P&gt;b) JMP assumes the user handles the issue and doesn't trigger the stop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 06:47:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906448#M106490</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-08T06:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to suppress "Download Data Completed" notification on HTTP Request</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906499#M106492</link>
      <description>&lt;P&gt;Looks like it!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Michael_MXAK_0-1759927908150.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84599iE117EE77BE7FF265/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Michael_MXAK_0-1759927908150.png" alt="Michael_MXAK_0-1759927908150.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 12:52:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-suppress-quot-Download-Data-Completed-quot-notification/m-p/906499#M106492</guid>
      <dc:creator>Michael_MXAK</dc:creator>
      <dc:date>2025-10-08T12:52:03Z</dc:date>
    </item>
  </channel>
</rss>

