SASUnit Examples  Version 1.5.0
_render_assertlibraryact.sas
Go to the documentation of this file.
1 
22 %macro _render_assertLibraryAct (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_act = catt (href,'_library_act.html');
30  href_rep = catt (href,'_library_rep.html');
31  %end;
32  &o_targetColumn. = catt ("^{style [flyover=""&g_nls_reportDetail_019."" url=""", href_act, """] &g_nls_reportDetail_040. }^n");
33  &o_targetColumn. = catt (&o_targetColumn., "^{style [flyover=""&g_nls_reportDetail_017."" url=""", href_rep, """] &g_nls_reportDetail_039. }^n",&i_sourceColumn.);
34 %mend _render_assertLibraryAct;