<?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: installing Clinical Standards Toolkit v1.7.5 (open source) in SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/869023#M42729</link>
    <description>&lt;P&gt;Thanks, but I'm still getting errors.&amp;nbsp; I believe the CSTvalidate is still giving a setup error and there are several libraries missing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chd1425_0-1681203756366.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/82473i7B2BC4857437541D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chd1425_0-1681203756366.png" alt="chd1425_0-1681203756366.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Apr 2023 09:09:23 GMT</pubDate>
    <dc:creator>chd1425</dc:creator>
    <dc:date>2023-04-11T09:09:23Z</dc:date>
    <item>
      <title>installing Clinical Standards Toolkit v1.7.5 (open source) in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/868563#M42724</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I'm trying to install the open source CST to use in SAS EG. Following the install instructions on &lt;A href="https://github.com/sassoftware/clinical-standards-toolkit" target="_blank" rel="noopener"&gt;https://github.com/sassoftware/clinical-standards-toolkit&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;I've installed Apache ANT and downloaded the v1.7.5 release package. In the config.properties file (C:\Program Files\SASHome\SASStudioSingleUser\3.8\war\config), I've added the following:&amp;nbsp;&lt;/P&gt;&lt;P&gt;#---SAS Clinical Standards toolkit&lt;BR /&gt;SET CSTHOME C:Users\Y.D.Dang_pc\Documents\SAS CST\cstFrameworkLibrary&lt;BR /&gt;CSTGLOBALLIB C:Users\Y.D.Dang_pc\Documents\SAS CST\cstGlobalLibrary&lt;BR /&gt;CSTSAMPLELIB C:Users\Y.D.Dang_pc\Documents\SAS CST\cstSampleLibrary&lt;BR /&gt;insert sasautos '!CSTHOME/macros'&lt;BR /&gt;JREOPTIONS (-Dsas.app.class.dirs=!CSTHOME/jar)&lt;BR /&gt;SET CLASSPATH !CSTHOME/jar&lt;/P&gt;&lt;P&gt;I'm currently however unable to run any of the programs. E.g. if I run cstvalidate I'm getting the following message:&lt;BR /&gt;WARNING: Apparent symbolic reference _CST_RC not resolved.&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:&lt;BR /&gt;&amp;amp;_cst_rc&lt;BR /&gt;ERROR: The macro CSTVALIDATE will stop executing.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is the config file the correct one as I'm using SAS EG.&lt;/LI&gt;&lt;LI&gt;If correct should I add a '-' before each line. E.g. -SET CSTHOME.... ( The hyphen is originally added in the txt file in sctFrameworklibrary, but it seemed to be a bit odd to have this in the config file)&lt;/LI&gt;&lt;LI&gt;I'm not able to stop server. Is it automatically stopped if I close SAS EG? A local server on my machine is used.&lt;/LI&gt;&lt;LI&gt;Any other points that I've missed that might cause these errors?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Yen&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 07:12:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/868563#M42724</guid>
      <dc:creator>chd1425</dc:creator>
      <dc:date>2023-04-07T07:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: installing Clinical Standards Toolkit v1.7.5 (open source) in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/868580#M42726</link>
      <description>&lt;P&gt;You need to initialize the global macro variables before invoking these macros.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
%include "C:\cstFrameworkLibrary\macros\*.sas";
*/





/*
initialize the global macro variables needed by the framework
*/
%cst_setstandardproperties(
_cstStandard=CST-FRAMEWORK
,_cstSubType=initialize
);
/*
initialize the global macro variables needed by CDISC SDTM
*/
%cst_setstandardproperties(
_cstStandard=CDISC-SDTM
,_cstSubType=initialize
);






%cst_getstandardsasreferences(
_cstStandard=CST-FRAMEWORK
,_cstOutputDS=sasrefs
);




/*
Create the empty SASReferences data set used in the next
step
*/
%cst_createdsfromtemplate(
_cstStandard=CST-FRAMEWORK,
_cstType=control,
_cstSubType=reference,
_cstOutputDS=work.sasrefs
);




/*
Create the table shells for CDISC SDTM 3.1.3 in the work library
*/
%cst_createtablesfordatastandard(
_cstStandard=CDISC-SDTM
,_cststandardVersion=3.1.3
,_cstOutputLibrary=work
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Apr 2023 11:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/868580#M42726</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-04-07T11:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: installing Clinical Standards Toolkit v1.7.5 (open source) in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/869023#M42729</link>
      <description>&lt;P&gt;Thanks, but I'm still getting errors.&amp;nbsp; I believe the CSTvalidate is still giving a setup error and there are several libraries missing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chd1425_0-1681203756366.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/82473i7B2BC4857437541D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chd1425_0-1681203756366.png" alt="chd1425_0-1681203756366.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 09:09:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/869023#M42729</guid>
      <dc:creator>chd1425</dc:creator>
      <dc:date>2023-04-11T09:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: installing Clinical Standards Toolkit v1.7.5 (open source) in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/869086#M42730</link>
      <description>Yeah. I think you need re-install CST again according to its documentation.&lt;BR /&gt;&lt;BR /&gt;Or contact with sas support .</description>
      <pubDate>Tue, 11 Apr 2023 11:50:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/installing-Clinical-Standards-Toolkit-v1-7-5-open-source-in-SAS/m-p/869086#M42730</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-04-11T11:50:41Z</dc:date>
    </item>
  </channel>
</rss>

