Here is the command. 1 ;*';*";*/;quit;run; 2 OPTIONS PAGENO=MIN; 3 %LET _CLIENTTASKLABEL='Program'; 4 %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project'; 5 %LET _CLIENTPROJECTPATH=''; 6 %LET _CLIENTPROJECTPATHHOST=''; 7 %LET _CLIENTPROJECTNAME=''; 8 %LET _SASPROGRAMFILE=''; 9 %LET _SASPROGRAMFILEHOST=''; 10 11 ODS _ALL_ CLOSE; 12 OPTIONS DEV=SVG; 13 GOPTIONS XPIXELS=0 YPIXELS=0; 14 %macro HTML5AccessibleGraphSupported; 15 %if %_SAS_VERCOMP(9, 4, 4) >= 0 %then ACCESSIBLE_GRAPH; 16 %mend; 17 FILENAME EGHTML TEMP; 18 ODS HTML5(ID=EGHTML) FILE=EGHTML 19 OPTIONS(BITMAP_MODE='INLINE') 20 %HTML5AccessibleGraphSupported 21 ENCODING='utf-8' 22 STYLE=HtmlBlue 23 NOGTITLE 24 NOGFOOTNOTE 25 GPATH=&sasworklocation 26 ; NOTE: Writing HTML5(EGHTML) Body file: EGHTML 27 28 proc product_status; run; For Base SAS Software ... Custom version information: 9.4_M6 Image version information: 9.04.01M6P110718 For SAS/STAT ... Custom version information: 15.1 For SAS/GRAPH ... Custom version information: 9.4_M6 For SAS Integration Technologies ... Custom version information: 9.4_M6 For High Performance Suite ... Custom version information: 2.2_M7 For SAS/ACCESS Interface to PC Files ... Custom version information: 9.4_M6 For SAS/ACCESS Interface to ODBC ... Custom version information: 9.4_M6 For SAS/ACCESS Interface to R/3 ... Custom version information: 4.4_M4 NOTE: PROCEDURE PRODUCT_STATUS used (Total process time): real time 0.14 seconds cpu time 0.03 seconds 29 30 %LET _CLIENTTASKLABEL=; 31 %LET _CLIENTPROCESSFLOWNAME=; 32 %LET _CLIENTPROJECTPATH=; 33 %LET _CLIENTPROJECTPATHHOST=; 34 %LET _CLIENTPROJECTNAME=; 2 The SAS System 10:43 Friday, October 21, 2022 35 %LET _SASPROGRAMFILE=; 36 %LET _SASPROGRAMFILEHOST=; 37 38 ;*';*";*/;quit;run; 39 ODS _ALL_ CLOSE; 40 41 42 QUIT; RUN; 43
... View more