Where is the PRINT output sent by Altair SLC Communicate by default?
Altair SLC Link is a technology that essentially takes a local script or part of a local script from a local Workbench client and executes it on a remote platform. Any log files, HTML or Listing results, and any datasets created from executing the program remotely are returned to the client through the normal Output and Server Explorer graphical tabs.
Altair SLC Communicate is a technology that depends on SAS language syntax statements such as SIGNON/SIGNOFF, RSUBMIT/ENDSUBMIT, PROC UPLOAD/DOWNLOAD in the SAS language program to execute code on both a local client and a remote server. It is a programmatic solution to remote execution. Any datasets created on the local client that need to be on the remote server have to be explicitly uploaded using PROC UPLOAD and any datasets created on the remote server that need to be used on the local client have to be explicitly downloaded using PROC DOWNLOAD.
Taken from What is the difference between LINK and COMMUNICATE?
————————-Documentation for Altair SLC Link explicitly states that by default Log and Output are returned to the client. However, the documentation for Altair SLC Communicate gives details of the OUTPUT= option for RSUBMIT can be KEEP, PURGE or filename, but fails to specify the default action. From experiments with Communicate, I can see the Log is returned to the client, but where is the PRINT output sent, as nothing appears back on the client?