Problem Note 55060: SASĀ® Drug Development 4.5 - Index files created using PROC DATASETS, DATA statement, or PROC SQL 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\index.txt';
   run;
   libname out "c:\temp\";
   data out.index_air(index=(date=(date)));
       set sashelp.air;
       idvar = _n_;
       idvar2 = _n_ + 100;
   run;
   proc datasets library=out nolist;
      modify index_air ;
      index create compositeidvar=(idvar date) / nomiss unique;
   quit;
   proc sql noprint;
      create unique index index_air_again on out.index_air (idvar2, date);
   quit;
   proc scaproc ;
       write;
   run;
There is no notification in the index.txt file that indicates index_air.sas7bndx file has been created as an OUTPUT. The index_air.sas7bndx file defines the index the index_air SAS® data set and that should appear in the job Manifest.
Operating System and Release Information
SAS System | SAS Drug Development | Linux for x64 | 4.5.1 | | 9.4 TS1M2 | |
SAS System | SAS Life Science Analytics Framework | Linux for x64 | 4.7 | 5.1.1 | 9.4 TS1M3 | 9.4 TS1M5 |
*
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: | medium |
Date Modified: | 2019-05-07 10:11:03 |
Date Created: | 2015-01-22 16:09:29 |