the following code proc fcmp ; X = 3 ; Y = 4 ; put "some text" @ ; put X= ; put _ALL_ ; run ; does not generate any output in the log. By redirecting the output like this ods listing file='~/FCMPOUT.txt'; proc fcmp ; X = 3 ; Y = 4 ; put "some text" @ ; put X= ; put _ALL_ ; run ; ods listing close; the output is written to the text file: some text X=3 X=3 Y=4 Is there any way to send this directly to the log ? Thanks!
... View more