/******************* URBAN INSTITUTE MACRO LIBRARY *********************
Macro: Note_mput
Description: Write a macro-generated note message to the SAS LOG
using %PUT.
Use: Open code; Within macro
Author: Peter Tatian
***********************************************************************/
%macro Note_mput(
Macro=, /* Macro name */
Msg= /* Note message */
);
/*************************** USAGE NOTES *****************************
SAMPLE CALL:
%Note_mput( macro=MyMacro, Msg=This is a note. )
*********************************************************************/
/*************************** UPDATE NOTES ****************************
11/07/04 - If Macro= parameter blank, does not include [macroname] in
message.
09/07/05 - Reformatted so that message will be displayed in color
in SAS Enhanced Editor.
*********************************************************************/
%***** ***** ***** MACRO SET UP ***** ***** *****;
%local SYL1 SYL2;
%***** ***** ***** ERROR CHECKS ***** ***** *****;
%***** ***** ***** MACRO BODY ***** ***** *****;
%let SYL1 = NO;
%if %length( ¯o ) = 0 %then %do;
%let SYL2 = TE:;
%end;
%else %do;
%let SYL2 = TE: [&Macro];
%end;
%put &SYL1&SYL2 &Msg;
%mend Note_mput;
/************************ UNCOMMENT TO TEST ***************************
%Note_mput( macro=MyMacro, Msg=This is a note. )
/**********************************************************************/Write Note Message to Log
Purpose: Write a macro-generated note message to the SAS LOG using %PUT.