26 %MACRO _render_assertColumnsRep (i_assertype=
 
   39    %_getTestSubfolder (i_assertType=assertColumns
 
   40                       ,i_root      =&g_target./tst
 
   47    LIBNAME _acLib 
"&l_path";
 
   49    %
if (&o_html.) %then %
do;
 
   50       ODS HTML4 FILE=
"&o_path/_&i_scnid._&i_casid._&i_tstid._cmp_exp.html" style=styles.SASUnit stylesheet=(url=
"SAS_SASUnit.css");
 
   53    %_reportFooter(o_html=&o_html.);
 
   55    TITLE 
"&g_nls_reportCmp_003";
 
   56    %IF %sysfunc(exist(_acLib._columns_exp)) %THEN %DO;
 
   57       PROC PRINT DATA=_acLib._columns_exp;
 
   63          PUT 
"&g_nls_reportCmp_004";
 
   67    %
if (&o_html.) %then %
do;
 
   69       ODS HTML4 FILE=
"&o_path/_&i_scnid._&i_casid._&i_tstid._cmp_act.html" style=styles.SASUnit stylesheet=(url=
"SAS_SASUnit.css");
 
   71    TITLE 
"&g_nls_reportCmp_001";
 
   72    %IF %sysfunc(exist(_acLib._columns_act)) %THEN %DO;
 
   73       PROC PRINT DATA=_acLib._columns_act;
 
   79          PUT 
"&g_nls_reportCmp_002";
 
   84    %
if (&o_html.) %then %
do;
 
   86       ODS HTML4 FILE=
"&o_path/_&i_scnid._&i_casid._&i_tstid._cmp_rep.html" style=styles.SASUnit stylesheet=(url=
"SAS_SASUnit.css");
 
   88       TITLE 
"&g_nls_reportCmp_005";
 
   89       PROC DOCUMENT NAME=_acLib._columns_rep;
 
   90          REPLAY / ACTIVETITLE ACTIVEFOOTN;
 
   92    %
if (&o_html.) %then %
do;
 
   97 %MEND _render_assertColumnsRep;