1 The SAS System 07:19 Thursday, July 27, 2017 1 ;*';*";*/;quit;run; 2 OPTIONS PAGENO=MIN; 3 %LET _CLIENTTASKLABEL='Program'; 4 %LET _CLIENTPROCESSFLOWNAME='WIP'; 5 %LET _CLIENTPROJECTPATH='C:\Users\torba\Documents\My SAS Files\pobytovi_hostia.egp'; 6 %LET _CLIENTPROJECTPATHHOST='TMR-TORBA'; 7 %LET _CLIENTPROJECTNAME='pobytovi_hostia.egp'; 8 %LET _SASPROGRAMFILE=''; 9 %LET _SASPROGRAMFILEHOST=''; 10 11 ODS _ALL_ CLOSE; 12 OPTIONS DEV=ACTIVEX; 13 GOPTIONS XPIXELS=0 YPIXELS=0; 14 FILENAME EGSR TEMP; 15 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR 16 STYLE=HtmlBlue 17 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css") 18 NOGTITLE 19 NOGFOOTNOTE 20 GPATH=&sasworklocation 21 ENCODING=UTF8 22 options(rolap="on") 23 ; NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR 24 25 GOPTIONS ACCESSIBLE; 26 proc options group=languagecontrol; 27 run; SAS (r) Proprietary Software Release 9.4 TS1M3 Group=LANGUAGECONTROL DATESTYLE=MDY Specifies the sequence of month, day, and year when ANYDTDTE, ANYDTDTM, or ANYDTTME informat data is ambiguous. DFLANG=ENGLISH Specifies the language for international date informats and formats. EXTENDOBSCOUNTER=YES Specifies whether to extend the maximum number of observations in a new SAS data file. LOCALEDATA=SASLOCALE Specifies the location of the locale database. LOGLANGCHG Enables changing the language of the SAS output when the LOCALE= option is changed. NOLOGLANGENG Write SAS log messages based on the values of the LOGLANGCHG, LSWLANG=, and LOCALE= options when SAS started. LSWLANG=LOCALE Specifies the language for SAS log and ODS messages when the LOCALE= option is set after SAS starts. MAPEBCDICTOASCII= Specifies the transcoding table that is used to convert characters from ASCII to EBCDIC and EBCDIC to ASCII. NONLDECSEPARATOR Disables formatting of numeric output using the decimal separator for the locale. ODSLANGCHG Enables the language of the SAS message text in ODS output to change when the LOCALE option is set after start up. PAPERSIZE=A4 Specifies the paper size to use for printing. RSASIOTRANSERROR Displays a transcoding error when illegal values are read from a remote application. TIMEZONE="GMT+02:00" Specifies a time zone. TRANTAB= Specifies the translation table catalog entries. URLENCODING=SESSION Specifies whether the argument to the URLENCODE function and to the URLDECODE function is interpreted using the SAS session encoding or UTF-8 encoding. DBCS Enables double-byte character sets for encoding East Asian languages. DBCSLANG=UNKNOWN Specifies a double-byte character set language. DBCSTYPE=UTF8 Specifies the encoding method to use for a double-byte character set. ENCODING=UTF-8 Specifies the default character-set encoding for the SAS session. 2 The SAS System 07:19 Thursday, July 27, 2017 LOCALE=EN_US Specifies a set of attributes in a SAS session that reflect the language, local conventions, and culture for a geographical region. NONLSCOMPATMODE Encodes data using the SAS session encoding. NOTE: PROCEDURE OPTIONS used (Total process time): real time 0.01 seconds cpu time 0.03 seconds 28 29 GOPTIONS NOACCESSIBLE; 30 %LET _CLIENTTASKLABEL=; 31 %LET _CLIENTPROCESSFLOWNAME=; 32 %LET _CLIENTPROJECTPATH=; 33 %LET _CLIENTPROJECTPATHHOST=; 34 %LET _CLIENTPROJECTNAME=; 35 %LET _SASPROGRAMFILE=; 36 %LET _SASPROGRAMFILEHOST=; 37 38 ;*';*";*/;quit;run; 39 ODS _ALL_ CLOSE; 40 41 42 QUIT; RUN; 43