Using SCL with Other SAS Software Products |
In SCL programs, you designate statements to be submitted to SAS software for processing by placing them in submit blocks. A submit block begins with a SUBMIT statement, ends with an ENDSUBMIT statement, and consists of all the statements in between. The following statements illustrate these characteristics:
SUBMIT; 1 proc print data=work.data1; 2 var a b c; 2 run; endsubmit; 3
For details, see SUBMIT.
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.