Usage Note 22376: I have a character string that I would like to pass into my SAS program using the SAS System option
SYSPARM=, but the string is longer than 80 characters. How can I do this in my JCL?
This can be done by adding a second OPTIONS parameter
to an instream copy of the SAS cataloged procedure.
Here is an example :
//SAS PROC ENTRY=SASxxx,OPTIONS=,OPTIONA=,...
//SAS EXEC PGM=&ENTRY,PARM='&OPTIONS&OPTIONA'
...more PROC statements...
//PEND
//SASSTEP EXEC SAS,OPTIONS='SYSPARM="THIS IS PART ONE',
//OPTIONA=' AND THIS IS PART TWO"'
//SYSIN DD *
...SAS program statements...
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Usage Note |
Priority: | low |
Date Modified: | 2008-01-30 12:51:18 |
Date Created: | 2002-12-16 10:56:49 |