前のページ|次のページ

SYSTIMEZONEIDENT 自動マクロ変数

TIMEZONE=システムオプションに基づいたタイムゾーンIDが格納されます。

種類: 自動マクロ変数(読み込み専用)

詳細

SYSTIMEZONEIDENTには、TIMEZONE=システムオプションの現在の値に基づいたタイムゾーンIDが格納されます。TIMEZONE=オプションの詳細については、お使いの動作環境向けのSASドキュメントを参照してください。
Using SYSTIMEZONEIDENT
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
前のページ|次のページ|ページの先頭へ