%macro mr_odsclose / store source des='V1.0.0.1' ; %************************************************************************* * PROGRAM NAME: mr_odsout.sas * PURPOSE: Close ODS options for use in TLF programming * * INPUT FILES: * OUTPUT FILES: * * USAGE NOTES: * * NOTES: * * MODIFICATION LOG: ************************************************************************* * DATE BY DESCRIPTION ************************************************************************* * MM/DD/YYYY USERID Complete description of modification made * including reference to source of change. * ************************************************************************* * © Pharmaceutical Product Development, Inc., 2012 * All Rights Reserved. *************************************************************************; ods rtf close; ods results; %** open general listing destination **; ods listing; %mend mr_odsclose;