<?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 SAS User Defined Formats in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68336#M6807</link>
    <description>We currently have two seperate SAS environemts, one running SAS 9.1 and the other 9.2. I am attempting to transfer an OLAP cube from one to the other but there is a user defined format which does not exist in the 9.2 environment and is therefore causing an error.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone tell me how I can view all user defined formats in SAS 9.1 and export/import to the 9.2 environment.&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
    <pubDate>Mon, 15 Mar 2010 14:49:01 GMT</pubDate>
    <dc:creator>Cullima</dc:creator>
    <dc:date>2010-03-15T14:49:01Z</dc:date>
    <item>
      <title>SAS User Defined Formats</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68336#M6807</link>
      <description>We currently have two seperate SAS environemts, one running SAS 9.1 and the other 9.2. I am attempting to transfer an OLAP cube from one to the other but there is a user defined format which does not exist in the 9.2 environment and is therefore causing an error.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone tell me how I can view all user defined formats in SAS 9.1 and export/import to the 9.2 environment.&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Mon, 15 Mar 2010 14:49:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68336#M6807</guid>
      <dc:creator>Cullima</dc:creator>
      <dc:date>2010-03-15T14:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS User Defined Formats</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68337#M6808</link>
      <description>You could query SASHELP.VFORMAT.&lt;BR /&gt;
&lt;BR /&gt;
By looking at the data it seems to me formats with "source='C'" are user defined (not sure about it).&lt;BR /&gt;
&lt;BR /&gt;
proc format;&lt;BR /&gt;
  value $test&lt;BR /&gt;
    '1'='1';&lt;BR /&gt;
  invalue _test&lt;BR /&gt;
    '1'=1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
  describe view sashelp.vformat;&lt;BR /&gt;
  select source, fmttype,count(*) as N_obs from sashelp.vformat group by source,fmttype;&lt;BR /&gt;
  select * from sashelp.vformat where source='C';&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Patrick&lt;BR /&gt;
&lt;BR /&gt;
P.S: About copying&lt;BR /&gt;
If this is from SAS9.1 under Windows to SAS9.2 under Windows then just copying the whole catalogue should be fine. &lt;BR /&gt;
If a same named catalogue already exists in the target environment then investigate PROC CATALOG (in source: copy formats to "transport" catalogue, move "transport" catalogue to target (i.e. ftp), move or copy formats from "transport" catalogue to target catalogue).

Message was edited by: Patrick</description>
      <pubDate>Tue, 16 Mar 2010 08:53:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68337#M6808</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2010-03-16T08:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS User Defined Formats</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68338#M6809</link>
      <description>Thanks.  Running this code provides me with a list of user defined formats in each environment.  Can anyone tell me how I go about transferrring them (I can no longer find the PROC FORMAT code used to create them.</description>
      <pubDate>Tue, 16 Mar 2010 09:17:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68338#M6809</guid>
      <dc:creator>Cullima</dc:creator>
      <dc:date>2010-03-16T09:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS User Defined Formats</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68339#M6810</link>
      <description>Sorry, didn't see the part of your message re copying...will try this....thanks again</description>
      <pubDate>Tue, 16 Mar 2010 09:22:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68339#M6810</guid>
      <dc:creator>Cullima</dc:creator>
      <dc:date>2010-03-16T09:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS User Defined Formats</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68340#M6811</link>
      <description>Look at this Documentation :&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/22/194.html" target="_blank"&gt;http://support.sas.com/kb/22/194.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Gaétan</description>
      <pubDate>Wed, 24 Mar 2010 09:28:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-User-Defined-Formats/m-p/68340#M6811</guid>
      <dc:creator>gso</dc:creator>
      <dc:date>2010-03-24T09:28:53Z</dc:date>
    </item>
  </channel>
</rss>

