0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

開発者コンソールでのユーザ言語の切替

Last updated at Posted at 2020-04-04

画面からも操作可能な設定ですが、いくつもリンクを踏まないと画面に辿り着けないため、開発者コンソール Anonymous Windowから一発で切り替える方法を考えてみました。

String email = '※操作ユーザのメルアド※';
USER user = [select id,LanguageLocaleKey from USER where email =: email];
if ( user.LanguageLocaleKey == 'ja' ){
user.LanguageLocaleKey = 'en_US';
} else {
user.LanguageLocaleKey = 'ja';
}
update user;
0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?