Previous Page | Next Page

Using SCL with Other SAS Software Products

Designating Submit Blocks in SCL Programs

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 

  1. The SUBMIT statement starts the submit block.

  2. These statements are submitted to SAS software when the program executes.

  3. The ENDSUBMIT statement ends the submit block.

For details, see SUBMIT.

Previous Page | Next Page | Top of Page