<?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 Maybe I do not have the JSON Engine? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810898#M319792</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to import JSON files to SAS, which is a new endeavor for me.&amp;nbsp; I've been able to bring one in using a DATA step with INFILE statement, but not with the JSON engine.&amp;nbsp; I keep getting this error: "&lt;FONT color="#FF0000"&gt;ERROR: The JSON engine cannot be found.&lt;/FONT&gt;"&amp;nbsp; I'm using SAS Enterprise Guide Version 7.1 (7.100.0.1966) (64-bit) and For Base SAS Software ...Custom version information: 9.4_M4 Image version information: 9.04.01M4P110916.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I'm trying to find out if this means I just don't have that feature? Or if I should keep trying to debug my code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The latest code I submitted was from a SAS blog: &lt;A href="https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas/&lt;/A&gt;&lt;/P&gt;&lt;PRE class=""&gt;&lt;SPAN&gt;filename&lt;/SPAN&gt; resp temp;
&amp;nbsp;
&lt;SPAN&gt;/* Neat service from Open Notify project */&lt;/SPAN&gt;
&lt;SPAN&gt;proc http&lt;/SPAN&gt; 
 url=&lt;SPAN&gt;"http://api.open-notify.org/astros.json"&lt;/SPAN&gt;
 method= &lt;SPAN&gt;"GET"&lt;/SPAN&gt;
 out=resp;
&lt;SPAN&gt;run&lt;/SPAN&gt;;
&amp;nbsp;
&lt;SPAN&gt;/* Assign a JSON library to the HTTP response */&lt;/SPAN&gt;
&lt;SPAN&gt;libname&lt;/SPAN&gt; space JSON &lt;SPAN&gt;fileref&lt;/SPAN&gt;=resp;
&amp;nbsp;
&lt;SPAN&gt;/* Print result, dropping automatic ordinal metadata */&lt;/SPAN&gt;
&lt;SPAN&gt;title&lt;/SPAN&gt; &lt;SPAN&gt;"Who is in space right now? (as of &amp;amp;sysdate)"&lt;/SPAN&gt;;
&lt;SPAN&gt;proc print&lt;/SPAN&gt; &lt;SPAN&gt;data&lt;/SPAN&gt;=space.people &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;drop&lt;/SPAN&gt;=&lt;SPAN&gt;ordinal&lt;/SPAN&gt;:&lt;SPAN&gt;)&lt;/SPAN&gt;;
&lt;SPAN&gt;run&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;P&gt;However, I've also tried submitting various other code snippets with the JSON library engine, all with the same result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Sun, 01 May 2022 11:31:13 GMT</pubDate>
    <dc:creator>brookeewhite1</dc:creator>
    <dc:date>2022-05-01T11:31:13Z</dc:date>
    <item>
      <title>Maybe I do not have the JSON Engine?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810898#M319792</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to import JSON files to SAS, which is a new endeavor for me.&amp;nbsp; I've been able to bring one in using a DATA step with INFILE statement, but not with the JSON engine.&amp;nbsp; I keep getting this error: "&lt;FONT color="#FF0000"&gt;ERROR: The JSON engine cannot be found.&lt;/FONT&gt;"&amp;nbsp; I'm using SAS Enterprise Guide Version 7.1 (7.100.0.1966) (64-bit) and For Base SAS Software ...Custom version information: 9.4_M4 Image version information: 9.04.01M4P110916.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I'm trying to find out if this means I just don't have that feature? Or if I should keep trying to debug my code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The latest code I submitted was from a SAS blog: &lt;A href="https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas/&lt;/A&gt;&lt;/P&gt;&lt;PRE class=""&gt;&lt;SPAN&gt;filename&lt;/SPAN&gt; resp temp;
&amp;nbsp;
&lt;SPAN&gt;/* Neat service from Open Notify project */&lt;/SPAN&gt;
&lt;SPAN&gt;proc http&lt;/SPAN&gt; 
 url=&lt;SPAN&gt;"http://api.open-notify.org/astros.json"&lt;/SPAN&gt;
 method= &lt;SPAN&gt;"GET"&lt;/SPAN&gt;
 out=resp;
&lt;SPAN&gt;run&lt;/SPAN&gt;;
&amp;nbsp;
&lt;SPAN&gt;/* Assign a JSON library to the HTTP response */&lt;/SPAN&gt;
&lt;SPAN&gt;libname&lt;/SPAN&gt; space JSON &lt;SPAN&gt;fileref&lt;/SPAN&gt;=resp;
&amp;nbsp;
&lt;SPAN&gt;/* Print result, dropping automatic ordinal metadata */&lt;/SPAN&gt;
&lt;SPAN&gt;title&lt;/SPAN&gt; &lt;SPAN&gt;"Who is in space right now? (as of &amp;amp;sysdate)"&lt;/SPAN&gt;;
&lt;SPAN&gt;proc print&lt;/SPAN&gt; &lt;SPAN&gt;data&lt;/SPAN&gt;=space.people &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;drop&lt;/SPAN&gt;=&lt;SPAN&gt;ordinal&lt;/SPAN&gt;:&lt;SPAN&gt;)&lt;/SPAN&gt;;
&lt;SPAN&gt;run&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;P&gt;However, I've also tried submitting various other code snippets with the JSON library engine, all with the same result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 11:31:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810898#M319792</guid>
      <dc:creator>brookeewhite1</dc:creator>
      <dc:date>2022-05-01T11:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Maybe I do not have the JSON Engine?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810902#M319796</link>
      <description>&lt;P&gt;You get that error from the LIBNAME statement using the JSON engine?&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I would double check your SAS version is M4 with:&amp;nbsp; %put &amp;amp;sysvlong; and see what that writes to the log.&amp;nbsp; If that confirms that your are on 9.4M4 (or later), then I would submit a ticket to SAS tech support.&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 12:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810902#M319796</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2022-05-01T12:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Maybe I do not have the JSON Engine?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810904#M319798</link>
      <description>&lt;P&gt;I ran that code and here is the log excerpt showing what I got back:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;23 %put &amp;amp;sysvlong;&lt;BR /&gt;9.04.01M4P110916&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 12:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810904#M319798</guid>
      <dc:creator>brookeewhite1</dc:creator>
      <dc:date>2022-05-01T12:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Maybe I do not have the JSON Engine?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810917#M319802</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;Your issue has been addressed in this post on the forum.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Administration-and-Deployment/ERROR-The-JSON-engine-cannot-be-found/td-p/396752" target="_blank"&gt;https://communities.sas.com/t5/Administration-and-Deployment/ERROR-The-JSON-engine-cannot-be-found/td-p/396752&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;Please revert back if this does not work.&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 13:23:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/810917#M319802</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-05-01T13:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Maybe I do not have the JSON Engine?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/811647#M320155</link>
      <description>&lt;P&gt;Update: I have a ticket open with our local administrators and am waiting to see what the resolution will be!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 12:19:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/811647#M320155</guid>
      <dc:creator>brookeewhite1</dc:creator>
      <dc:date>2022-05-05T12:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Maybe I do not have the JSON Engine?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/812169#M320423</link>
      <description>&lt;P&gt;Thank you for the suggestion to involve tech support!&amp;nbsp; After a bit of back and forth, our local tech support confirmed the issue was on their side by opening a JIRA ticket to resolve the problem.&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 13:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Maybe-I-do-not-have-the-JSON-Engine/m-p/812169#M320423</guid>
      <dc:creator>brookeewhite1</dc:creator>
      <dc:date>2022-05-09T13:50:47Z</dc:date>
    </item>
  </channel>
</rss>

