Thanks. I aplogize for the confusion.
In my start menu, the target for the SAS icon was:
"C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -CONFIG "C:\Program Files\SASHome\SASFoundation\9.4\nls\en\sasv9.cfg"
and I added the -RLANG option in the prior config file. I launched SAS with:
"C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -CONFIG "C:\Program Files\SASHome\SASFoundation\9.4\sasv9.cfg"
And now the RLANG option is regonized:
proc options option=RLANG value; run; Option Value Information For SAS Option RLANG Value: RLANG Scope: SAS Session How option value set: Config File Config file name: C:\Program Files\SASHome\SASFoundation\9.4\sasv9.cfg
Now I received the original error message when I try to call R:
2 3 proc iml; NOTE: Writing HTML Body file: sashtml.htm NOTE: IML Ready 4 submit / R; 5 rx <- matrix( 1:3, nrow=1) # vector of sequence 1,2,3 6 rm <- matrix( 1:9, nrow=3, byrow=TRUE) # 3 x 3 matrix 7 rq <- rm %*% t(rx) # matrix multiplication 8 print(rq) 9 endsubmit; ERROR: SAS could not initialize the R language interface. statement : SUBMIT at line 4 column 1 10 run; NOTE: Module MAIN is undefined in IML; cannot be RUN. 11 quit; NOTE: Exiting IML. NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE IML used (Total process time): real time 2.06 seconds cpu time 0.46 seconds ERROR: An installed version of R could not be found.
... View more