<?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: SAS Multiprocessing/inherit meta library error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46583#M9621</link>
    <description>Thank You for your answer Daniel.&lt;BR /&gt;
&lt;BR /&gt;
But if you look at my post more closely, You would see, that i use inherited library&lt;BR /&gt;
and I use it successfully.&lt;BR /&gt;
&lt;BR /&gt;
Here is code:&lt;BR /&gt;
&lt;I&gt;rsubmit _01 wait=no macvar=JOB01 signonwait=y persist=n;&lt;BR /&gt;
&lt;B&gt;data _null_;&lt;BR /&gt;
set testine.Conf_action_types(obs = 10);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;/B&gt;endrsubmit;&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
and here is the log output:&lt;BR /&gt;
&lt;I&gt;NOTE: Remote submit to _01 commencing.&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;NOTE: There were 10 observations read from the data set TESTINE.CONF_ACTION_TYPES.&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
real time 0.08 seconds&lt;BR /&gt;
cpu time 0.02 seconds&lt;BR /&gt;
&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Remote submit to _01 complete.&lt;BR /&gt;
NOTE: Remote signoff from _01 commencing.&lt;BR /&gt;
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414&lt;BR /&gt;
NOTE: The SAS System used:&lt;BR /&gt;
real time 10.53 seconds&lt;BR /&gt;
cpu time 0.14 seconds&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Remote signoff from _01 complete.&lt;/I&gt;</description>
    <pubDate>Thu, 18 Jun 2009 18:46:19 GMT</pubDate>
    <dc:creator>SAS_user</dc:creator>
    <dc:date>2009-06-18T18:46:19Z</dc:date>
    <item>
      <title>SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46579#M9617</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I started Multiprocessing. Its very intresting.&lt;BR /&gt;
But i can't inheritlib which is meta. (its the same when library is SPDS or BASE)&lt;BR /&gt;
Any idea how i can workaround or fix this.&lt;BR /&gt;
&lt;BR /&gt;
Here is my code.&lt;BR /&gt;
/* library temp */&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Libref TEMP was successfully assigned as follows: &lt;BR /&gt;
      Engine:        META &lt;BR /&gt;
      Physical Name: &lt;BR /&gt;
&lt;BR /&gt;
The code is:&lt;BR /&gt;
&lt;BR /&gt;
signon _01 sascmd="!sascmd" inheritlib=(Work=locwork MacroLib=MacroLib temp=temp );&lt;BR /&gt;
&lt;BR /&gt;
After i signon i get this eror:&lt;BR /&gt;
&lt;B&gt;ERROR 22-7: Invalid option name LIBRARY.&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
But after rsubmit it use library "temp" without erros:&lt;BR /&gt;
&lt;BR /&gt;
data x;&lt;BR /&gt;
   set temp.F1DN;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: There were 743 observations read from the data set TEMP.F1DN.&lt;BR /&gt;
NOTE: The data set WORK.X has 743 observations and 5 variables.&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
      real time           0.23 seconds&lt;BR /&gt;
      cpu time            0.03 seconds</description>
      <pubDate>Thu, 18 Jun 2009 11:48:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46579#M9617</guid>
      <dc:creator>SAS_user</dc:creator>
      <dc:date>2009-06-18T11:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46580#M9618</link>
      <description>Could you please share more of your code (lib assignments, signon and rsubmit script), because I don't see anything wrong about it.&lt;BR /&gt;
&lt;BR /&gt;
Cheers from Portugal.&lt;BR /&gt;
&lt;BR /&gt;
Daniel Santos @ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;</description>
      <pubDate>Thu, 18 Jun 2009 14:02:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46580#M9618</guid>
      <dc:creator>DanielSantos</dc:creator>
      <dc:date>2009-06-18T14:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46581#M9619</link>
      <description>/* Here is Code */&lt;BR /&gt;
******************************************;&lt;BR /&gt;
options source;&lt;BR /&gt;
&lt;BR /&gt;
libname testine &lt;BR /&gt;
	meta&lt;BR /&gt;
	library = testine;&lt;BR /&gt;
&lt;BR /&gt;
signon _01 sascmd="!sascmd" inheritlib=(Work=locwork testine =testine);&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
	call sleep(10,1);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
rsubmit _01 wait=no macvar=JOB01 signonwait=y persist=n;&lt;BR /&gt;
	data _null_;&lt;BR /&gt;
		set testine.Conf_action_types(obs = 10);&lt;BR /&gt;
	run;&lt;BR /&gt;
endrsubmit;&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
	call sleep (20,1);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
******************************************;&lt;BR /&gt;
LOG&lt;BR /&gt;
******************************************;&lt;BR /&gt;
1                                                                                                                        The SAS System                                                                                            18:07 Thursday, June 18, 2009&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Unable to open SASUSER.REGSTRY. WORK.REGSTRY will be opened instead.&lt;BR /&gt;
NOTE: All registry changes will be lost at the end of the session.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Unable to copy SASUSER registry to WORK registry. Because of this, you will not see registry customizations during this session.&lt;BR /&gt;
NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.&lt;BR /&gt;
NOTE: All profile changes will be lost at the end of the session.&lt;BR /&gt;
NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. &lt;BR /&gt;
NOTE: SAS (r) 9.1 (TS1M3)&lt;BR /&gt;
      Licensed to #######, Site 0088197007.&lt;BR /&gt;
NOTE: This session is executing on the HP-UX B.11.31 platform.&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Running on HP Model ia64 Serial Number 3427677858.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
NOTE: SAS 9.1.3 Service Pack 4&lt;BR /&gt;
&lt;BR /&gt;
You are running SAS 9. Some SAS 8 files will be automatically converted &lt;BR /&gt;
by the V9 engine; others are incompatible.  Please see &lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/migration/planning/platform/64bit.html" target="_blank"&gt;http://support.sas.com/rnd/migration/planning/platform/64bit.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
PROC MIGRATE will preserve current SAS file attributes and is &lt;BR /&gt;
recommended for converting all your SAS libraries from any &lt;BR /&gt;
SAS 8 release to SAS 9.  For details and examples, please see&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/migration/index.html" target="_blank"&gt;http://support.sas.com/rnd/migration/index.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
This message is contained in the SAS news file, and is presented upon&lt;BR /&gt;
initialization.  Edit the file "news" in the "misc/base" directory to&lt;BR /&gt;
display site-specific news and information in the program log.&lt;BR /&gt;
The command line option "-nonews" will prevent this display.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
NOTE: SAS initialization used:&lt;BR /&gt;
      real time           0.25 seconds&lt;BR /&gt;
      cpu time            0.11 seconds&lt;BR /&gt;
      &lt;BR /&gt;
3          &lt;BR /&gt;
4          libname testine&lt;BR /&gt;
5          	meta&lt;BR /&gt;
6          	library = testine;&lt;BR /&gt;
NOTE: Libref TESTINE was successfully assigned as follows: &lt;BR /&gt;
      Engine:        META &lt;BR /&gt;
      Physical Name: &lt;BR /&gt;
7          &lt;BR /&gt;
8          signon _01 sascmd="!sascmd" inheritlib=(Work=locwork testine =testine);&lt;BR /&gt;
NOTE: Remote signon to _01 commencing (SAS Release 9.01.01M3P020206).&lt;BR /&gt;
NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.&lt;BR /&gt;
NOTE: All profile changes will be lost at the end of the session.&lt;BR /&gt;
NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. &lt;BR /&gt;
NOTE: SAS (r) 9.1 (TS1M3)&lt;BR /&gt;
      Licensed to #######, Site 0088197007.&lt;BR /&gt;
NOTE: This session is executing on the HP-UX B.11.31 platform.&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Running on HP Model ia64 Serial Number 3427677858.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
NOTE: SAS 9.1.3 Service Pack 4&lt;BR /&gt;
&lt;BR /&gt;
You are running SAS 9. Some SAS 8 files will be automatically converted &lt;BR /&gt;
by the V9 engine; others are incompatible.  Please see &lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/migration/planning/platform/64bit.html" target="_blank"&gt;http://support.sas.com/rnd/migration/planning/platform/64bit.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
PROC MIGRATE will preserve current SAS file attributes and is &lt;BR /&gt;
recommended for converting all your SAS libraries from any &lt;BR /&gt;
SAS 8 release to SAS 9.  For details and examples, please see&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/migration/index.html" target="_blank"&gt;http://support.sas.com/rnd/migration/index.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
This message is contained in the SAS news file, and is presented upon&lt;BR /&gt;
initialization.  Edit the file "news" in the "misc/base" directory to&lt;BR /&gt;
display site-specific news and information in the program log.&lt;BR /&gt;
The command line option "-nonews" will prevent this display.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
NOTE: SAS initialization used:&lt;BR /&gt;
      real time           0.12 seconds&lt;BR /&gt;
      cpu time            0.11 seconds&lt;BR /&gt;
      &lt;BR /&gt;
&lt;B&gt;ERROR 22-7: Invalid option name LIBRARY.&lt;/B&gt;&lt;BR /&gt;
NOTE: Remote signon to _01 complete.&lt;BR /&gt;
9          &lt;BR /&gt;
10         data _null_;&lt;BR /&gt;
11         	call sleep(10,1);&lt;BR /&gt;
12         run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
      real time           10.15 seconds&lt;BR /&gt;
      cpu time            0.00 seconds&lt;BR /&gt;
      &lt;BR /&gt;
&lt;BR /&gt;
13         &lt;BR /&gt;
14         rsubmit _01 wait=no macvar=JOB01 signonwait=y persist=n;&lt;BR /&gt;
&amp;#12;2                                                                                                                        The SAS System                                                                                            18:07 Thursday, June 18, 2009&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Background remote submit to _01 in progress.&lt;BR /&gt;
15         &lt;BR /&gt;
16         data _null_;&lt;BR /&gt;
17         	call sleep (20,1);&lt;BR /&gt;
18         run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Remote submit to _01 commencing.&lt;BR /&gt;
 &lt;BR /&gt;
NOTE: There were 10 observations read from the data set TESTINE.CONF_ACTION_TYPES.&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
      real time           0.08 seconds&lt;BR /&gt;
      cpu time            0.02 seconds&lt;BR /&gt;
 &lt;BR /&gt;
 &lt;BR /&gt;
NOTE: Remote submit to _01 complete.&lt;BR /&gt;
NOTE: Remote signoff from _01 commencing.&lt;BR /&gt;
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414&lt;BR /&gt;
NOTE: The SAS System used:&lt;BR /&gt;
      real time           10.53 seconds&lt;BR /&gt;
      cpu time            0.14 seconds&lt;BR /&gt;
      &lt;BR /&gt;
NOTE: Remote signoff from _01 complete.&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
      real time           20.01 seconds&lt;BR /&gt;
      cpu time            0.02 seconds&lt;BR /&gt;
      &lt;BR /&gt;
&lt;BR /&gt;
ERROR: Errors printed on page 1.&lt;BR /&gt;
&lt;BR /&gt;
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414&lt;BR /&gt;
NOTE: The SAS System used:&lt;BR /&gt;
      real time           31.12 seconds&lt;BR /&gt;
      cpu time            0.27 seconds</description>
      <pubDate>Thu, 18 Jun 2009 15:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46581#M9619</guid>
      <dc:creator>SAS_user</dc:creator>
      <dc:date>2009-06-18T15:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46582#M9620</link>
      <description>I suspect you're having trouble, because you're trying to inherit a "special" library (metadata engine) which is by definition a remote lib in the metadata server. So you're trying to remotely access a remote library.&lt;BR /&gt;
&lt;BR /&gt;
For example, inheritlib will not work if you try to remote signon form another remote session (but will work fine if from within a local session).&lt;BR /&gt;
&lt;BR /&gt;
Try to remove the testine from your script, and see if the problem persists.&lt;BR /&gt;
&lt;BR /&gt;
Cheers from Portugal.&lt;BR /&gt;
&lt;BR /&gt;
Daniel Santos @ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;</description>
      <pubDate>Thu, 18 Jun 2009 15:57:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46582#M9620</guid>
      <dc:creator>DanielSantos</dc:creator>
      <dc:date>2009-06-18T15:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46583#M9621</link>
      <description>Thank You for your answer Daniel.&lt;BR /&gt;
&lt;BR /&gt;
But if you look at my post more closely, You would see, that i use inherited library&lt;BR /&gt;
and I use it successfully.&lt;BR /&gt;
&lt;BR /&gt;
Here is code:&lt;BR /&gt;
&lt;I&gt;rsubmit _01 wait=no macvar=JOB01 signonwait=y persist=n;&lt;BR /&gt;
&lt;B&gt;data _null_;&lt;BR /&gt;
set testine.Conf_action_types(obs = 10);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;/B&gt;endrsubmit;&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
and here is the log output:&lt;BR /&gt;
&lt;I&gt;NOTE: Remote submit to _01 commencing.&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;NOTE: There were 10 observations read from the data set TESTINE.CONF_ACTION_TYPES.&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
real time 0.08 seconds&lt;BR /&gt;
cpu time 0.02 seconds&lt;BR /&gt;
&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Remote submit to _01 complete.&lt;BR /&gt;
NOTE: Remote signoff from _01 commencing.&lt;BR /&gt;
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414&lt;BR /&gt;
NOTE: The SAS System used:&lt;BR /&gt;
real time 10.53 seconds&lt;BR /&gt;
cpu time 0.14 seconds&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Remote signoff from _01 complete.&lt;/I&gt;</description>
      <pubDate>Thu, 18 Jun 2009 18:46:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46583#M9621</guid>
      <dc:creator>SAS_user</dc:creator>
      <dc:date>2009-06-18T18:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46584#M9622</link>
      <description>It's time to consider opening a  SAS track (support issue) for your problem, providing detailed SAS code and SAS log information, to investigate/resolve your problem further.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 18 Jun 2009 19:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46584#M9622</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-06-18T19:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46585#M9623</link>
      <description>How can i do that?</description>
      <pubDate>Fri, 19 Jun 2009 06:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46585#M9623</guid>
      <dc:creator>SAS_user</dc:creator>
      <dc:date>2009-06-19T06:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Multiprocessing/inherit meta library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46586#M9624</link>
      <description>&amp;gt; Thank You for your answer Daniel.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; But if you look at my post more closely, You would&lt;BR /&gt;
&amp;gt; see, that i use inherited library&lt;BR /&gt;
&amp;gt; and I use it successfully.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Here is code:&lt;BR /&gt;
&amp;gt; &lt;I&gt;rsubmit _01 wait=no macvar=JOB01 signonwait=y&lt;BR /&gt;
&amp;gt; persist=n;&lt;BR /&gt;
&amp;gt; &lt;B&gt;data _null_;&lt;BR /&gt;
&amp;gt; set testine.Conf_action_types(obs = 10);&lt;BR /&gt;
&amp;gt; run;&lt;BR /&gt;
&amp;gt; &lt;/B&gt;endrsubmit;&lt;/I&gt;&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; and here is the log output:&lt;BR /&gt;
&amp;gt; &lt;I&gt;NOTE: Remote submit to _01 commencing.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;B&gt;NOTE: There were 10 observations read from the&lt;BR /&gt;
&amp;gt; data set TESTINE.CONF_ACTION_TYPES.&lt;BR /&gt;
&amp;gt; NOTE: DATA statement used (Total process time):&lt;BR /&gt;
&amp;gt; real time 0.08 seconds&lt;BR /&gt;
&amp;gt; cpu time 0.02 seconds&lt;BR /&gt;
&amp;gt; &lt;/B&gt;&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; NOTE: Remote submit to _01 complete.&lt;BR /&gt;
&amp;gt; NOTE: Remote signoff from _01 commencing.&lt;BR /&gt;
&amp;gt; NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC&lt;BR /&gt;
&amp;gt; USA 27513-2414&lt;BR /&gt;
&amp;gt; NOTE: The SAS System used:&lt;BR /&gt;
&amp;gt; real time 10.53 seconds&lt;BR /&gt;
&amp;gt; cpu time 0.14 seconds&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; NOTE: Remote signoff from _01 complete.&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
Yes, but this doesn't mean it's officially supported.&lt;BR /&gt;
There are many SAS features available that are not yet fully supported.&lt;BR /&gt;
&lt;BR /&gt;
You probably won't get that error if you remove the testine.&lt;BR /&gt;
&lt;BR /&gt;
Scott is right, you should open a track to clarify this situation (if metalibs can be inherited or not, and if positive, why do you get this error).&lt;BR /&gt;
&lt;BR /&gt;
Check the FAQ's for Tracks here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/opentrackshelp.html" target="_blank"&gt;http://support.sas.com/techsup/opentrackshelp.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Cheers from Portugal.&lt;BR /&gt;
&lt;BR /&gt;
Daniel Santos @ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;</description>
      <pubDate>Fri, 19 Jun 2009 08:32:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Multiprocessing-inherit-meta-library-error/m-p/46586#M9624</guid>
      <dc:creator>DanielSantos</dc:creator>
      <dc:date>2009-06-19T08:32:31Z</dc:date>
    </item>
  </channel>
</rss>

