reconcile

Reconciles physical program with last item in history

%reconcile(path=path location of log files, 
     program=selected SAS program name with extenstion,
     outfile=output result file
    );
Where Is Type... And represents...
path Library referencing the location of the versioned programs.
program C (optional) SAS program name.  For example, demog.sas
outfile C (optional) The output file of the resulting report.  This includes the full path and the name of the HTML file.

Details
This tool evaluates a specified SAS program file and compares it to the last program version within the audit history.  It will generate a report displaying if the content of the program code matches what is in history.  

  • If the program parameter is left blank, all the SAS programs specified in the path directory will be evaluated.  
  • If the outpath parameter is left blank, an HTML file named reconcile.html will be generated. 
  • A dataset named WORK.RECONCILE will be created by the %reconcile macro.  This is what is used to generate its report.  You can choose to generate additional reports against this dataset.  
Example
  %reconcile(path=c:\myprog);
  %reconcile(path=c:\myprog,program=demog.sas);