SASUnit Examples  Version 1.5.0
_reportfooter.sas
Go to the documentation of this file.
1 
20 %MACRO _reportFooter (o_html=0
21  );
22  %local l_footnote;
23  %if (&o_html.) %then %do;
24  %_reportFooterHTML;
25  %end;
26  %else %do;
27  %let l_footnote=&g_nls_reportFooter_001. %sysfunc (putn(%sysfunc(today()),&g_nls_reportFooter_002.));
28  %let l_footnote=&l_footnote.%str(,) %sysfunc (putn(%sysfunc(today()),&g_nls_reportFooter_003.));
29  %let l_footnote=&l_footnote.%str(,) %sysfunc (putn(%sysfunc(time()), time8.0)) &g_nls_reportFooter_004.;
30  %let l_footnote=&l_footnote. ^{style [URL="http://sourceforge.net/projects/sasunit/" hreftarget="_blank" postimage="&g_sasunit./SASUnit_Logo.png"] SASUnit} Version &g_version (&g_revision);
31  footnote '^{leaders "_"}_';
32  footnote2 j=r %sysfunc(quote(&l_footnote.));
33  %end;
34 %MEND _reportFooter;