LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 11 Apr 2007 15:01:30 +0200
Reply-To:     SAS-L List <sas-l@listserv.uga.edu>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Robert Bardos <bardos2@ANSYS.CH>
Subject:      Re: Version conversion SAS V6 to V8(Urgent)
In-Reply-To:  <714854.59578.qm@web50603.mail.re2.yahoo.com>
Content-Type: text/plain; charset="iso-8859-1"

Narasimha,

am I right in interpreting this as a CLIST invocation in a z/OS environment, where the actual command is:

%SASV6 OPTIONS('DMS $FSBUFSZ=2048 $GRBUFSZ=2048')+ AUTOEXEC('''LLF5.LOSSES.SAS(AUTOEXV7)''')

'+' and '-' are continuation characters for TSO. While '+' appends the (left justified) content of the following line, '-' inserts a blank in between the parts.

So maybe your problem goes away either by using

%SASV6 OPTIONS('DMS $FSBUFSZ=2048 $GRBUFSZ=2048') + AUTOEXEC('''LLF5.LOSSES.SAS(AUTOEXV7)''') (Notice the blank before '+')

or by using

%SASV6 OPTIONS('DMS $FSBUFSZ=2048 $GRBUFSZ=2048')- AUTOEXEC('''LLF5.LOSSES.SAS(AUTOEXV7)''')

If this doesn't solve it, please post the error message(s) you are getting.

Robert Bardos Ansys AG, Zurich, Switzerland

> -----Ursprüngliche Nachricht----- > Von: SAS(r) Discussion > [mailto:SAS-L@LISTSERV.UGA.EDU]Im Auftrag von > deva narsimha > Gesendet: Mittwoch, 11. April 2007 14:23 > An: SAS-L@LISTSERV.UGA.EDU > Betreff: Reg: Version conversion SAS V6 to V8(Urgent) > > > Hi All, > > We are in the process of converting SAS/AF libraries > from V6 to V8. > > Existing Code > -------------- > %SASV6 OPTIONS('DMS $FSBUFSZ=2048 > $GRBUFSZ=2048')+ > AUTOEXEC('''LLF5.LOSSES.SAS(AUTOEXV7)''') > > Kindly help us in converting the above code to V8. > > We tried the above code in V8 (SASP). But, the second > line is not getting recognised in V8. > > Please help us in this regard. > > Thanks a lot in advance. > > Narasimha > > > > > > > > > > > ________________________________________________________ > ____________________________ > Be a PS3 game guru. > Get your game face on with the latest PS3 news and > previews at Yahoo! Games. > http://videogames.yahoo.com/platform?platform=120121 >


Back to: Top of message | Previous page | Main SAS-L page