<?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: JMP 15 not compatible with JMP14 JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329558#M57877</link>
    <description>&lt;P&gt;For what it is worth, I get the same results in v13.2.1.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );
Show( r );
/*:
Name Unresolved: sex{1} in access or evaluation of 'sex' , sex/*###*/
In the following script, error marked by /*###*/
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( sex/*###*/ == "M" );
Show( r );&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Nov 2020 02:01:29 GMT</pubDate>
    <dc:creator>jimloughlin</dc:creator>
    <dc:date>2020-11-04T02:01:29Z</dc:date>
    <item>
      <title>JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329511#M57868</link>
      <description>&lt;P&gt;In JMP14, i am using code&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;r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it does not work in JMP15.&lt;/P&gt;
&lt;P&gt;I cannot change code at this point as it is used many places in the code.&lt;/P&gt;
&lt;P&gt;have seen previously also with newer releases previous JMP JSL is not compatible, face the issue again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( :sex == "M" );
Show( r );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:42:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329511#M57868</guid>
      <dc:creator>ram_asra_gmail_</dc:creator>
      <dc:date>2023-06-09T23:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329551#M57871</link>
      <description>&lt;P&gt;I've just tested your code:&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;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( :sex == "M" );
Show( r );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and I get the same results in JMP 14 and JMP 15.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the log from JMP 14:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/*:
//:*/
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( :sex == "M" );
Show( r );
/*:

r = [6, 7, 8, 12, 13, 14, 15, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 37, 39, 40];&lt;/PRE&gt;
&lt;P&gt;and from JMP 15:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/*:
//:*/
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( :sex == "M" );
Show( r );
/*:

r = [6, 7, 8, 12, 13, 14, 15, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 37, 39, 40];&lt;/PRE&gt;
&lt;P&gt;Can you give us some detail about what is failing for you? Is there an error message?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 22:13:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329551#M57871</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2020-11-03T22:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329552#M57872</link>
      <description>you need to test this: r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );&lt;BR /&gt;i tested again and got error again as below&lt;BR /&gt;&lt;BR /&gt;Name Unresolved: sex{1} in access or evaluation of 'sex' , sex/*###*/&lt;BR /&gt;&lt;BR /&gt;at line 3 in Scripting Index</description>
      <pubDate>Tue, 03 Nov 2020 22:23:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329552#M57872</guid>
      <dc:creator>ram_asra_gmail_</dc:creator>
      <dc:date>2020-11-03T22:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329555#M57874</link>
      <description>&lt;P&gt;Whole code as below&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 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );
Show( r );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Nov 2020 22:31:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329555#M57874</guid>
      <dc:creator>ram_asra_gmail_</dc:creator>
      <dc:date>2020-11-03T22:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329556#M57875</link>
      <description>&lt;P&gt;My apologies. I missed the difference between the two code snippets in your original post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I tested your code as posted immediately above in JMP 14 and JMP 15 and got the same result in both.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log from JMP 14:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;//:*/
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );
Show( r );
/*:

Name Unresolved: sex{1} in access or evaluation of 'sex' , sex/*###*/

In the following script, error marked by /*###*/
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( sex/*###*/ == "M" );
Show( r );&lt;/PRE&gt;
&lt;P&gt;Log from JMP 15:&lt;/P&gt;
&lt;PRE&gt;/*:
//:*/
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );
Show( r );
/*:

Name Unresolved: sex{1} in access or evaluation of 'sex' , sex/*###*/

at line 3 in untitled script 4.jsl&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Nov 2020 22:33:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329556#M57875</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2020-11-03T22:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329558#M57877</link>
      <description>&lt;P&gt;For what it is worth, I get the same results in v13.2.1.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( name("sex") == "M" );
Show( r );
/*:
Name Unresolved: sex{1} in access or evaluation of 'sex' , sex/*###*/
In the following script, error marked by /*###*/
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt &amp;lt;&amp;lt; Get Rows Where( sex/*###*/ == "M" );
Show( r );&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 02:01:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329558#M57877</guid>
      <dc:creator>jimloughlin</dc:creator>
      <dc:date>2020-11-04T02:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 15 not compatible with JMP14 JSL</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329668#M57883</link>
      <description>&lt;P&gt;You should employ the&amp;nbsp;&lt;STRONG&gt;:&lt;/STRONG&gt; scoping operator to the &lt;STRONG&gt;Name( "sex" )&lt;/STRONG&gt; directive if you want to use it as a column name. This form works:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;r = dt &amp;lt;&amp;lt; Get Rows Where( :Name( "sex" ) == "M" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Nov 2020 12:51:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-15-not-compatible-with-JMP14-JSL/m-p/329668#M57883</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-11-04T12:51:44Z</dc:date>
    </item>
  </channel>
</rss>

