Problem Note 53812: SAS® Drug Development 4.5 - Index files created using PROC FMCP for functions and subroutines definitions are not listed in a job Manifest
SAS® Drug Development relies on PROC SCAPROC to list inputs and outputs for a job Manifest or in a SAS® Session.
Consider this program:
proc scaproc;
record 'c:\temp\functions.txt';
run;
libname out "c:\temp\";
proc fcmp outlib=out.funcs.inv2;
function inverse2(in);
if n=0 then inv=.;
else inv=1/in;
return(inv);
endsub;
run;
proc fcmp outlib=out.funcs.inv2;
data _null_;
x=5;
y=inverse2(x);
put y=;
run;
proc scaproc ;
write;
run;
There is no notification in the functions.txt file that indicates funcs.sas7bndx file has been created as an OUTPUT. The funcs.sas7bndx file defines the index for the function and is a file that should appear in the job Manifest.
Operating System and Release Information
SAS System | SAS Life Science Analytics Framework | Linux for x64 | 4.7 | 5.1.1 | 9.4 TS1M3 | 9.4 TS1M5 |
SAS System | SAS Drug Development | Linux for x64 | 4.5.1 | | 9.4 TS1M2 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Rally defect DE5238
Type: | Problem Note |
Priority: | high |
Date Modified: | 2019-05-07 10:11:41 |
Date Created: | 2014-08-01 14:03:39 |