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