<?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: Copy Formats to new Library in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30547#M4600</link>
    <description>Thanks all.&lt;BR /&gt;
&lt;BR /&gt;
I used a technique much like Peter.C suggested except that the source library was allocated on the mainframe as a remote table using the CONNECT Spawner (thank goodness that was available).  I allocated the target as the server library and - ta-da!&lt;BR /&gt;
&lt;BR /&gt;
Also - the source library had only the formats that I needed for this application, not the entire production format library.  I was thinking that I needed to select only a few formats from a library that contains hundreds.&lt;BR /&gt;
&lt;BR /&gt;
And - unfortunately, the source code is long gone...</description>
    <pubDate>Thu, 03 Jun 2010 15:08:01 GMT</pubDate>
    <dc:creator>OS2Rules</dc:creator>
    <dc:date>2010-06-03T15:08:01Z</dc:date>
    <item>
      <title>Copy Formats to new Library</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30543#M4596</link>
      <description>Hi All:&lt;BR /&gt;
&lt;BR /&gt;
I can't seem to find this in the doc anywhere:&lt;BR /&gt;
&lt;BR /&gt;
I have a format that I have saved in a library on the mainframe that I need to copy to the server.  How do I do this (other than the Connect stuff, which is not a problem)?&lt;BR /&gt;
&lt;BR /&gt;
I don't want to copy the entire library or the format catalog, just the format that I need.&lt;BR /&gt;
&lt;BR /&gt;
Much thanks.</description>
      <pubDate>Wed, 02 Jun 2010 15:58:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30543#M4596</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2010-06-02T15:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Formats to new Library</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30544#M4597</link>
      <description>proc format cntlout = work.something library= zos_fromat_lib ;&lt;BR /&gt;
  select any required $format and_or informat ;&lt;BR /&gt;
run ;&lt;BR /&gt;
signon yoursrv ;&lt;BR /&gt;
rsubmit ;&lt;BR /&gt;
proc upload data= work.something ;&lt;BR /&gt;
run;&lt;BR /&gt;
proc format library=server_fmt_library cntlin= work.something ;&lt;BR /&gt;
run ;</description>
      <pubDate>Wed, 02 Jun 2010 18:44:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30544#M4597</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2010-06-02T18:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Formats to new Library</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30545#M4598</link>
      <description>If you don't use SAS/CONNECT there are 2 options:&lt;BR /&gt;
&lt;BR /&gt;
1) Copy the source code that produced the format and run it on the target computer.&lt;BR /&gt;
&lt;BR /&gt;
2) Convert the SAS format into a SAS transport file using the CPORT procedure, do a BINARY transfer of the file to your target computer, then read in the transport file using the CIMPORT procedure. Refer to SAS documentation for more details.</description>
      <pubDate>Wed, 02 Jun 2010 22:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30545#M4598</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2010-06-02T22:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Formats to new Library</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30546#M4599</link>
      <description>Suggested Google advanced search argument, this topic/post:&lt;BR /&gt;
&lt;BR /&gt;
proc cport transfer catalog format operating system site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 03 Jun 2010 01:11:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30546#M4599</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-06-03T01:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Formats to new Library</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30547#M4600</link>
      <description>Thanks all.&lt;BR /&gt;
&lt;BR /&gt;
I used a technique much like Peter.C suggested except that the source library was allocated on the mainframe as a remote table using the CONNECT Spawner (thank goodness that was available).  I allocated the target as the server library and - ta-da!&lt;BR /&gt;
&lt;BR /&gt;
Also - the source library had only the formats that I needed for this application, not the entire production format library.  I was thinking that I needed to select only a few formats from a library that contains hundreds.&lt;BR /&gt;
&lt;BR /&gt;
And - unfortunately, the source code is long gone...</description>
      <pubDate>Thu, 03 Jun 2010 15:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Copy-Formats-to-new-Library/m-p/30547#M4600</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2010-06-03T15:08:01Z</dc:date>
    </item>
  </channel>
</rss>

