<?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 JSL for making a study current study in JMP Clinical in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657565#M84688</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm wondering if there is study management API&amp;nbsp; for making a study as current study in JMP clinical.&amp;nbsp; The "JMPClinicalBatchConfiguration" seems relevent here but I do not know how to set up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Baoyue Li&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jul 2023 07:44:06 GMT</pubDate>
    <dc:creator>BaoyueLi</dc:creator>
    <dc:date>2023-07-12T07:44:06Z</dc:date>
    <item>
      <title>JSL for making a study current study in JMP Clinical</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657565#M84688</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm wondering if there is study management API&amp;nbsp; for making a study as current study in JMP clinical.&amp;nbsp; The "JMPClinicalBatchConfiguration" seems relevent here but I do not know how to set up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Baoyue Li&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 07:44:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657565#M84688</guid>
      <dc:creator>BaoyueLi</dc:creator>
      <dc:date>2023-07-12T07:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: JSL for making a study current study in JMP Clinical</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657844#M84718</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hello Baoyue!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;If you are interested in running a JSL script within JMP Clinical that sets the current study, you can use this function:&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;JMPClinicalStudyManagerAPI:setCurrentStudy(&amp;lt;Study Name&amp;gt;);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;FONT face="arial,helvetica,sans-serif"&gt;where &amp;lt;Study Name&amp;gt; is a string that is the name of the study you want to make active.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;You can read more about the API here:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;A href="https://www.jmp.com/support/downloads/JMPC170_documentation/Content/JMPCUserGuide/AP_C_0013.htm" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/downloads/JMPC170_documentation/Content/JMPCUserGuide/AP_C_0013.htm&lt;/A&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The JMPClinicalBatchConfiguration you reference above is an environment variable that you can set prior to launching JMP Clinical and it will make that configuration be the active configuration. There is also the JMPClinicalBatchCurrentStudy environment variable that will set the current study. Again, that variable has to be set prior to launching JMP Clinical.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face="arial, helvetica, sans-serif"&gt;I hope this helps.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face="arial, helvetica, sans-serif"&gt;Drew&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Jul 2023 17:42:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657844#M84718</guid>
      <dc:creator>drewfoglia</dc:creator>
      <dc:date>2023-07-12T17:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: JSL for making a study current study in JMP Clinical</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657923#M84723</link>
      <description>&lt;P&gt;Many thanks Drew. I got the JMP Alert "the symbol 'setCurrentStudy' is not defined in namespace 'JMPclinicalstudyManagerAPI'{3501} in access or evaluation of 'JMPclinicalstudymanagerAPI:setCurrentStudy', ..."&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've read through the link you provided but there's no command for setting current study there.&lt;/P&gt;&lt;P&gt;also, I'm using JMP clinical 8.1 and JMP 15.2.1&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Baoyue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 01:15:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-for-making-a-study-current-study-in-JMP-Clinical/m-p/657923#M84723</guid>
      <dc:creator>BaoyueLi</dc:creator>
      <dc:date>2023-07-13T01:15:02Z</dc:date>
    </item>
  </channel>
</rss>

