proc stream outfile = &outfile &mod &asis &noAbSSCmt
             %if %length(&quoting) > 0 %then quoting=&quoting;
 ;
   BEGIN
   %include &fileref(&page);
 ;;;;
 run;

The PROC STREAM options are specified using the macro parameters. Note the %IF statement is needed to handle the case where the value of the quoting parameter is blank or null.

Return