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=
"css/SAS_SASUnit.css")
51 encoding=
"&g_rep_encoding.";
54 %_reportFooter(o_html=&o_html.);
56 TITLE
"&g_nls_reportCmp_003";
57 %IF %sysfunc(exist(_acLib._columns_exp)) %THEN %DO;
58 PROC PRINT DATA=_acLib._columns_exp;
64 PUT
"&g_nls_reportCmp_004";
68 %
if (&o_html.) %then %
do;
70 ODS HTML4 FILE=
"&o_path/_&i_scnid._&i_casid._&i_tstid._cmp_act.html" style=styles.SASUnit stylesheet=(url=
"css/SAS_SASUnit.css");
72 TITLE
"&g_nls_reportCmp_001";
73 %IF %sysfunc(exist(_acLib._columns_act)) %THEN %DO;
74 PROC PRINT DATA=_acLib._columns_act;
80 PUT
"&g_nls_reportCmp_002";
85 %
if (&o_html.) %then %
do;
87 ODS HTML4 FILE=
"&o_path/_&i_scnid._&i_casid._&i_tstid._cmp_rep.html" style=styles.SASUnit stylesheet=(url=
"css/SAS_SASUnit.css");
89 TITLE
"&g_nls_reportCmp_005";
90 PROC DOCUMENT NAME=_acLib._columns_rep;
91 REPLAY / ACTIVETITLE ACTIVEFOOTN;
93 %
if (&o_html.) %then %
do;
98 %MEND _render_assertColumnsRep;