<?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: Message Unknown Appearing in Valid JSL Code in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219182#M43873</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Also: &lt;EM&gt;unknown&lt;/EM&gt; is a terse error message JMP uses when something happens that JMP was unprepared for. You can run the JSL a statement at a time, watching the log, to isolate the problem. JMP tries to diagnose errors when the JSL is parsed and executed; if JMP catches an error without planning for the error, all JMP can say is &lt;EM&gt;unknown&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you can post a self-contained example, JMP might have a better message for the next person that finds it.&amp;nbsp;Sending the example to tech support will make sure it gets tracked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem may be more obvious once the problem line is known and you can study the values in the variables (print them to the log). It could be a missing value or character data where numeric data is needed, or it could be two parameters to a function call swapped, or using a table row too big or too small, or something else. All of these should have a better message than &lt;EM&gt;unknown&lt;/EM&gt;.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If I am not missing what you are trying to relay, it seems as if you are referring to a message window or an error reported by the Debugger. The flags I am getting are in the code. Based on the default color coding for JSL the keywords in red are either errors or unknown messages. As I do not get an error message when saving the script and it runs without issue, that only possibility left is that the keywords in red are unknown messages.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jul 2019 18:15:02 GMT</pubDate>
    <dc:creator>mdawson69</dc:creator>
    <dc:date>2019-07-30T18:15:02Z</dc:date>
    <item>
      <title>Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219055#M43845</link>
      <description>&lt;P&gt;Recently, I have noticed that JSL is reporting unknown message for valid code. Below is the latest example (unknown messages highlighted):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
Delete Symbols();

databaseFile = Pick File(
	"Select Music Collection File",
	"$DOCUMENTS",
	{"Music Collection|csv"},
	1,
	0
);

albumTable = Open(databaseFile);

albumTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Delete Rows&lt;/FONT&gt;(N Rows());
:Name("Artist/Album") &amp;lt;&amp;lt; Set Name("Title");
:Single 2 &amp;lt;&amp;lt; Set Name("CD Single");

:LP &amp;lt;&amp;lt; Value Labels({0 = "False", 1 = "True"});
:EP &amp;lt;&amp;lt; Value Labels({0 = "False", 1 = "True"});
:Single &amp;lt;&amp;lt; Value Labels({0 = "False", 1 = "True"});
:Album &amp;lt;&amp;lt; Value Labels({0 = "False", 1 = "True"});
:CD Single &amp;lt;&amp;lt; Value Labels({0 = "False", 1 = "True"});
:Want &amp;lt;&amp;lt; Value Labels({0 = "False", 1 = "True"});

albumTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;New Column&lt;/FONT&gt;(
	"Artist Block",
	Character,
	Formula(If(:Format == "", :Title))
);

albumTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;New Column&lt;/FONT&gt;(
	"Artist",
	Character,
	Formula(
		If(Row() != 1,
			If(:Artist Block == "",
				Lag(:Artist, 1),
				:Artist Block
			),
			:Artist Block
		)
	)
);

albumTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Move Selected Columns&lt;/FONT&gt;({"Artist"}, To First);
tableName = albumTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Get Name&lt;/FONT&gt;();

artistCategoryTable = albumTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Subset&lt;/FONT&gt;(
	Output Table("Artist Category " || tableName),
	Copy Formula(0),
	All Rows,
	Selected Columns Only(0)
);

Close(albumTable, NoSave);

artistRowFilter = artistCategoryTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Data Filter&lt;/FONT&gt;(
	Mode(Include(1)),
	Inverse(1),
	Add Filter(
		Columns(:Artist Block),
		Where(:Artist Block == "")
	),
	Invisible
);

artistCategoryTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Delete Rows&lt;/FONT&gt;;
artistCategoryTable &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Delete Columns&lt;/FONT&gt;(:Artist Block);

artistRowFilter &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Clear&lt;/FONT&gt;;
artistRowFilter &amp;lt;&amp;lt; &lt;FONT color="#FF0000"&gt;Delete&lt;/FONT&gt;;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;As in other scripts where I have seen this color coding, this script runs without issue. Any ideas on why valid JSL messages are being flagged as unknown?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:25:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219055#M43845</guid>
      <dc:creator>mdawson69</dc:creator>
      <dc:date>2023-06-09T23:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219116#M43864</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5332"&gt;@mdawson69&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which lines of JSL are being highlighted? There are several lines of JSL that are confusing:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;albumTable &amp;lt;&amp;lt; Delete Rows(N Rows());&amp;nbsp; &amp;nbsp;&lt;FONT color="#0000FF"&gt;What is the intent of this JSL?&lt;/FONT&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;All the code using the data filter is confusing. Simply use&amp;nbsp;&amp;nbsp;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;artistCategoryTable &amp;lt;&amp;lt; select where(:Artist=="");
artistCategoryTable &amp;lt;&amp;lt; delete rows();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without more details, I do not understand your issues.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 01:17:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219116#M43864</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2019-07-30T01:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219118#M43865</link>
      <description>&lt;P&gt;edit: ignore this reply after additional explanation below...thanks Jeff!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also: &lt;EM&gt;unknown&lt;/EM&gt; is a terse error message JMP uses when something happens that JMP was unprepared for. You can run the JSL a statement at a time, watching the log, to isolate the problem. JMP tries to diagnose errors when the JSL is parsed and executed; if JMP catches an error without planning for the error, all JMP can say is &lt;EM&gt;unknown&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you can post a self-contained example, JMP might have a better message for the next person that finds it.&amp;nbsp;Sending the example to tech support will make sure it gets tracked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem may be more obvious once the problem line is known and you can study the values in the variables (print them to the log). It could be a missing value or character data where numeric data is needed, or it could be two parameters to a function call swapped, or using a table row too big or too small, or something else. All of these should have a better message than &lt;EM&gt;unknown&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11257"&gt;@EvanMcCorkle&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1893"&gt;@Audrey_Shull&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2019 00:04:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219118#M43865</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2019-07-31T00:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219174#M43870</link>
      <description>&lt;P&gt;The highlighting does not come through when code is added to a post with a JSL tag, so here is a screenshot of the code with the flags.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2019-07-30 at 13.44.43.png" style="width: 956px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/18465i4B108D04F4F8710C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-07-30 at 13.44.43.png" alt="Screen Shot 2019-07-30 at 13.44.43.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As I stated in my originanl post, the script does work as intended, but the fact that many lines have reserved words flagged as Unknown Message makes me think that there is another underlying issue. I have been using JSL for a few years and it has only been in the past couple of months that I now get these unknown message flags. Now that I think about it, this probably started after updating my JMP installation to 14.3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gzmorgan0 wrote:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;albumTable &amp;lt;&amp;lt; Delete Rows(N Rows());&amp;nbsp; &amp;nbsp;&lt;FONT color="#0000FF"&gt;What is the intent of this JSL?&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That line of code deletes the last row in the data table that is not album data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gzmorgan0 wrote:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;All the code using the data filter is confusing. Simply use&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;PRE class=" language-jsl"&gt;&lt;CODE class="  language-jsl"&gt;artistCategoryTable &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token messages"&gt; select where&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Artist&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;""&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
artistCategoryTable &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token messages"&gt; delete rows&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The filtering code I have in the script was generated by JMP when I was manually going through the process. While I have been using JSL for about 5 years, I am by no means an expert due to the fact that my workload is such that I have little time to learn anything new let alone master it, so I rarely generate a script completely from scratch. Top that off with the fact that I now need to learn R because one of our clients uses R and insists the we do the same.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 18:06:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219174#M43870</guid>
      <dc:creator>mdawson69</dc:creator>
      <dc:date>2019-07-30T18:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219182#M43873</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Also: &lt;EM&gt;unknown&lt;/EM&gt; is a terse error message JMP uses when something happens that JMP was unprepared for. You can run the JSL a statement at a time, watching the log, to isolate the problem. JMP tries to diagnose errors when the JSL is parsed and executed; if JMP catches an error without planning for the error, all JMP can say is &lt;EM&gt;unknown&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you can post a self-contained example, JMP might have a better message for the next person that finds it.&amp;nbsp;Sending the example to tech support will make sure it gets tracked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem may be more obvious once the problem line is known and you can study the values in the variables (print them to the log). It could be a missing value or character data where numeric data is needed, or it could be two parameters to a function call swapped, or using a table row too big or too small, or something else. All of these should have a better message than &lt;EM&gt;unknown&lt;/EM&gt;.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If I am not missing what you are trying to relay, it seems as if you are referring to a message window or an error reported by the Debugger. The flags I am getting are in the code. Based on the default color coding for JSL the keywords in red are either errors or unknown messages. As I do not get an error message when saving the script and it runs without issue, that only possibility left is that the keywords in red are unknown messages.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 18:15:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219182#M43873</guid>
      <dc:creator>mdawson69</dc:creator>
      <dc:date>2019-07-30T18:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219213#M43883</link>
      <description>&lt;P&gt;Now I understand what you're describing. The picture helps explain that the color coding in the script editor isn't coloring the valid messages correctly. Instead, it's coloring them red as the default preferences proscribe for &lt;EM&gt;Messages Unknown&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Parallels DesktopScreenSnapz004.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/18470iF1914A804BBDF5A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Parallels DesktopScreenSnapz004.png" alt="Parallels DesktopScreenSnapz004.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's really odd. I've never seen that before. What version of JMP are you running?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 20:40:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219213#M43883</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2019-07-30T20:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219253#M43888</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6878"&gt;@Jeff_Perkinson&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;That's really odd. I've never seen that before. What version of JMP are you running?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ditto. As I stated, I never had this issue until a few months ago. It is really weird. I did try to experiment with creating a dark mode theme for JSL a while ago, but ultimately went back to the default settings, as I am not as well versed in what all the items in the style list are associated with in JSL. It does not help that I know just enough about color science to be quite **bleep** about selecting colors that are complementary, but also well suited to the overall theme; I just do not have that much free time right now. :frowning_face:&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running JMP 14.3. As I am our company’s JMP administrator, I make a point of trying to keep the JMP users up-to-date.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2019 00:48:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219253#M43888</guid>
      <dc:creator>mdawson69</dc:creator>
      <dc:date>2019-07-31T00:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219886#M44006</link>
      <description>&lt;P&gt;It looks like you have the "Color unknown object messages" preference turned on. You can find this setting in the "JSL formatting" group box in the Script Editor preference group.&amp;nbsp; Prior to running the script the albumTable variable has not been assigned so jmp is not aggressive in marking object messages as unknown.&amp;nbsp; When the script is run, albumTable is set equal to a table and then that table is closed.&amp;nbsp; At that point jmp can better determine which messages are valid and since a closed table cannot handle a "delete rows" message, the message will then be colored red.&amp;nbsp; Since evaluating objects and messages can be time consuming, JMP does not recheck every script everytime an variable is changed so you might need to reformat the script or else edit the line with the message to see the color update.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 18:52:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219886#M44006</guid>
      <dc:creator>DaveB</dc:creator>
      <dc:date>2019-08-02T18:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219919#M44010</link>
      <description>&lt;P&gt;That was it. I must have inadvertently enabled “Color unknown object messages” when I was attempting to create a Dark Mode theme.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 21:06:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/219919#M44010</guid>
      <dc:creator>mdawson69</dc:creator>
      <dc:date>2019-08-02T21:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Message Unknown Appearing in Valid JSL Code</title>
      <link>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/637428#M83518</link>
      <description>&lt;P&gt;I love having&amp;nbsp;&lt;SPAN&gt;“Color unknown object messages” enabled:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1685545266756.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53292iD484F15A38F2C9AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1685545266756.png" alt="hogi_0-1685545266756.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I can quickly check if objects are initialized.&lt;BR /&gt;but sometimes, messages are marked red, although, they are "known".&lt;BR /&gt;Some minutes later, Jmp corrects the error.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;example: dt is known as a data table - and some minutes later, Jmp will know that it can send &lt;STRONG&gt;Begin Data Update&lt;/STRONG&gt; to the data table.&lt;BR /&gt;Why is &lt;STRONG&gt;Begin Data Table&lt;/STRONG&gt; marked as unknown?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1685545368987.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53293iCDC66AD981AA632C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1685545368987.png" alt="hogi_1-1685545368987.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 15:04:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Message-Unknown-Appearing-in-Valid-JSL-Code/m-p/637428#M83518</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-05-31T15:04:27Z</dc:date>
    </item>
  </channel>
</rss>

