|
Name
|
Description
|
|---|---|
|
Inputs:
|
|
|
SAS_CODE_REMOTE_FILE
|
The physical location
accessible with the SAS Workspace Server where the SAS program resides
|
|
SAS_LIST_STATUS
|
If equal to TRUE, a
fragment of the output is sent as node status on each step boundary.
|
|
SAS_LIST_WORKTABLE_XML
|
When selected, saves
the list output of the job. This output can be very large.
|
|
SAS_LOG_STATUS
|
If equal to TRUE a fragment
of the log is sent as node status on each step boundary
|
|
SAS_LOG_WORKTABLE_XML
|
When selected, saves
the log of the job. This log can be very large.
|
|
SAS_SERVER_NAME
|
The name of the logical
pooled or non-pooled branch/component of the SAS Application server
|
|
SAS_STEPEVENTS
|
If equal to TRUE when
the node is running, events are fired at each step boundary in the
SAS program.
|
|
Unique Outputs:
|
|
|
FILE_DATA
|
The SAS code
|
|
SAS_LIST_CONTENTS_XML
|
The contents of the
SAS program listing
|
|
SAS_LOG_CONTENTS_XML
|
The contents of the
SAS program log
|
|
SAS_RC
|
The final return code
from the SAS job.
|

data _null_;
set sashelp.class;
attrib Name length = $8;
attrib Sex length = $1;
attrib Age length = 8;
attrib Height length = 8;
attrib Weight length = 8;
quote='"';
file "&SASCodeEcho_Input" dlm=' ';
put
quote +(-1) Name +(-1) quote
quote +(-1) Sex +(-1) quote
quote +(-1) Age +(-1) quote
quote +(-1) Height +(-1) quote
quote +(-1) Weight +(-1) quote
;
run;