SASUnit Examples  Version 1.5.0
_render_assertlibraryexp.sas
Go to the documentation of this file.
1 
22 %macro _render_assertLibraryExp (i_sourceColumn=
23  ,o_html=0
24  ,o_targetColumn=
25  );
26 
27  href = catt ('_',put (scn_id, z3.),'_',put (cas_id, z3.),'_',put (tst_id, z3.));
28  %if (&o_html.) %then %do;
29  href_exp = catt (href,'_library_exp.html');
30  %end;
31  &o_targetColumn. = catt ("^{style [flyover=""&g_nls_reportDetail_018."" url=""", href_exp, """] &g_nls_reportDetail_040. }^n^n", &i_sourceColumn.);
32 %mend _render_assertLibraryExp;