|
Chapter Contents |
Previous |
Next |
| Using SAS/IML Software to Generate IML Statements |
The same strategy used for calling the operating system works for SAS global statements as well, including calling display manager by generating DM statements.
The following subroutine executes a display manager command:
start dm(command);
call push(" dm '",command,"'; resume;");
pause;
finish;
run dm('log; color source red');
The call generates and executes the statements
dm 'log; color source red'; resume;which take you to the LOG window, where all source code is written in red.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.