<?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 Format not found or could not be loaded in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893282#M352877</link>
    <description>&lt;P&gt;I have .sas7bcat format catalog. when i run the proc catalog the output is as below.&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qwerty12_2-1694095111834.png" style="width: 279px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/87697i6020899D4D949B5B/image-dimensions/279x114?v=v2" width="279" height="114" role="button" title="qwerty12_2-1694095111834.png" alt="qwerty12_2-1694095111834.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to make it to .sas7bdat and what to see the data inside how can i do that?&lt;/P&gt;</description>
    <pubDate>Fri, 08 Sep 2023 12:46:12 GMT</pubDate>
    <dc:creator>qwerty12</dc:creator>
    <dc:date>2023-09-08T12:46:12Z</dc:date>
    <item>
      <title>Format not found or could not be loaded</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893282#M352877</link>
      <description>&lt;P&gt;I have .sas7bcat format catalog. when i run the proc catalog the output is as below.&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qwerty12_2-1694095111834.png" style="width: 279px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/87697i6020899D4D949B5B/image-dimensions/279x114?v=v2" width="279" height="114" role="button" title="qwerty12_2-1694095111834.png" alt="qwerty12_2-1694095111834.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to make it to .sas7bdat and what to see the data inside how can i do that?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 12:46:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893282#M352877</guid>
      <dc:creator>qwerty12</dc:creator>
      <dc:date>2023-09-08T12:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Format not found or could not be loaded</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893283#M352878</link>
      <description>&lt;P&gt;We can't help if we don't see &lt;U&gt;entire&lt;/U&gt; log printout. Also from the proc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 11:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893283#M352878</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-09-08T11:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Format not found or could not be loaded</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893285#M352880</link>
      <description>&lt;P&gt;Run the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options fmtsearch = (FMT);

proc catalog c=FMT.formats; contents; run;quit;

data _null_;
  ASD_orig = "test";
  APR_name_orig=put(ASD_orig, $APR_NM.);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and share the log. BTW. proc catalog ends with "QUIT;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 11:32:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893285#M352880</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-09-08T11:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Format not found or could not be loaded</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893323#M352898</link>
      <description>&lt;P&gt;Generic idea is to use Proc Format to point to the location and use CNTLOUT option to create a data set.&lt;/P&gt;
&lt;P&gt;That would require a libname where the format catalog resides&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The basic code would look like&lt;/P&gt;
&lt;PRE&gt;Proc format library=YOURLIB cntlout=yourdatasetgoeshere;
run;&lt;/PRE&gt;
&lt;P&gt;Caution: Catalogs can be a bit version specific, SAS release and operating system, but if proc contents isn't complaining then you may be good to go.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 14:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Format-not-found-or-could-not-be-loaded/m-p/893323#M352898</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-09-08T14:51:31Z</dc:date>
    </item>
  </channel>
</rss>

