PROC FCMP PROBLEM
Posted
by Bruno
on Stack Overflow
See other posts from Stack Overflow
or by Bruno
Published on 2009-10-15T14:11:31Z
Indexed on
2010/05/21
10:30 UTC
Read the original article
Hit count: 231
I copy the code from a paper that i found on internet.
proc fcmp outlib=work.funcs.Test; function whatAmI(); return(42); endsub; quit;
options cmplib=work.funcs;
data null; rci = whatAmI(); put rci=; /* should be 42 */ run;
When I execute the code, it show the message: ERROR 68-185: The function WHATAMI is unknown, or cannot be accessed.
I tried other functions and always show this message. I change the libname, but nothing work. What´s wrong?
© Stack Overflow or respective owner