SASUnit Examples  Version 1.5.0
_render_assertlogmsgexp.sas
Go to the documentation of this file.
1 
22 %macro _render_assertLogMsgExp (i_sourceColumn=
23  ,o_html=0
24  ,o_targetColumn=
25  );
26  hlp = substr(&i_sourceColumn.,1,1);
27  if hlp='1' then hlp="&g_nls_reportDetail_042";
28  else hlp="&g_nls_reportDetail_043";
29  &i_sourceColumn. = substr(&i_sourceColumn.,2);
30  hlp = "&g_nls_reportDetail_044 " !! trim(&i_sourceColumn.) !! " " !! trim(hlp);
31  %_render_dataColumn (i_sourceColumn=hlp
32  ,o_targetColumn=&o_targetColumn.
33  );
34 %mend _render_assertLogMsgExp;