TIMEZONE=システムオプションに基づいたタイムゾーンIDが格納されます。
種類: | 自動マクロ変数(読み込み専用) |
option timezone='america/new_york'; %put &=systimezoneident; option timezone='america/chicago'; %put &=systimezoneident; option timezone='america/denver'; %put &=systimezoneident; option timezone='america/los_angeles'; %put &=systimezoneident;
12 option timezone='america/new_york'; 13 %put &=systimezoneident; SYSTIMEZONEIDENT=AMERICA/NEW_YORK 14 15 option timezone='america/chicago'; 16 %put &=systimezoneident; SYSTIMEZONEIDENT=AMERICA/CHICAGO 17 18 option timezone='america/denver'; 19 %put &=systimezoneident; SYSTIMEZONEIDENT=AMERICA/DENVER 20 21 option timezone='america/los_angeles'; 22 %put &=systimezoneident; SYSTIMEZONEIDENT=AMERICA/LOS_ANGELES