How can I query the supported timezones in Apex?2019 Community Moderator ElectionConvert Event StartDateTime and EndDateTime from GMT to the local timezoneDate format issueHow to determine UTC for a date/time represented in a time zone other than the current user's time zone?Waiting for Response. Google Time Zone and GeoCode APIRemove timezone conversion from the value of ui:inputDateTimeDateTime conversion to time zoneAdding events according to user's timezone through APIBusiness Hours and Time Zones (EDT vs EST?)Due time calculated to be 19:00 instead of 18:00 when after 25/3How to Convert DateTime String Received From API Response?
Why is it that I can sometimes guess the next note?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
awk assign to multiple variables at once
What does Apple's new App Store requirement mean
Why do Radio Buttons not fill the entire outer circle?
Pre-mixing cryogenic fuels and using only one fuel tank
Can you use Vicious Mockery to win an argument or gain favours?
Non-trope happy ending?
What kind of floor tile is this?
What is Cash Advance APR?
xxx we would have made had we used xxx, what is had used for?
Review your own paper in Mathematics
risk of flooding in petra in november
How to make money from a browser who sees 5 seconds into the future of any web page?
Does Doodling or Improvising on the Piano Have Any Benefits?
The IT department bottlenecks progress, how should I handle this?
How would you translate "more" for use as an interface button?
How to align my equation to left?
It grows, but water kills it
What is going on with gets(stdin) on the site coderbyte?
Dative vs Accusative
Does the reader need to like the PoV character?
Is there a RAID 0 Equivalent for RAM?
How to get directions in deep space?
How can I query the supported timezones in Apex?
2019 Community Moderator ElectionConvert Event StartDateTime and EndDateTime from GMT to the local timezoneDate format issueHow to determine UTC for a date/time represented in a time zone other than the current user's time zone?Waiting for Response. Google Time Zone and GeoCode APIRemove timezone conversion from the value of ui:inputDateTimeDateTime conversion to time zoneAdding events according to user's timezone through APIBusiness Hours and Time Zones (EDT vs EST?)Due time calculated to be 19:00 instead of 18:00 when after 25/3How to Convert DateTime String Received From API Response?
Apex provides a TimeZone API. You can use this to query the detail of a time zone, named using its "SID" (a value like "Europe/London" or "America/New_York" for example). However, this API doesn't provide a means to query the SIDs for the supported time zones.
How can I determine the valid set of supported time zones by SID?
apex picklist list timezone
add a comment |
Apex provides a TimeZone API. You can use this to query the detail of a time zone, named using its "SID" (a value like "Europe/London" or "America/New_York" for example). However, this API doesn't provide a means to query the SIDs for the supported time zones.
How can I determine the valid set of supported time zones by SID?
apex picklist list timezone
add a comment |
Apex provides a TimeZone API. You can use this to query the detail of a time zone, named using its "SID" (a value like "Europe/London" or "America/New_York" for example). However, this API doesn't provide a means to query the SIDs for the supported time zones.
How can I determine the valid set of supported time zones by SID?
apex picklist list timezone
Apex provides a TimeZone API. You can use this to query the detail of a time zone, named using its "SID" (a value like "Europe/London" or "America/New_York" for example). However, this API doesn't provide a means to query the SIDs for the supported time zones.
How can I determine the valid set of supported time zones by SID?
apex picklist list timezone
apex picklist list timezone
asked Mar 18 at 16:28
Phil WPhil W
481210
481210
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you call TimeZone.getTimeZone with an invalid SID you get back the "GMT" time zone instance - this is one way to validate that your SID is supported (by checking that the SID for the object you get back is the same as the SID you provided). However, that doesn't help with getting the list of valid options.
Fortunately, the Salesforce schema includes a field on User, TimeZoneSidKey, that is a picklist containing all the valid SID values. This can be queried in Apex thus:
List<PicklistEntry> entries = Schema.SObjectType.User.fields.TimeZoneSidKey.picklistValues;
Each entry contains a single SID, which is the actual "value" for the entry.
3
FYI you can drop theSchema.in most cases, including this one.
– Adrian Larson♦
Mar 18 at 16:29
User.TimeZoneSidKey.getDescribe().picklistValuesalso works
– cropredy
Mar 18 at 16:58
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "459"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f254332%2fhow-can-i-query-the-supported-timezones-in-apex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you call TimeZone.getTimeZone with an invalid SID you get back the "GMT" time zone instance - this is one way to validate that your SID is supported (by checking that the SID for the object you get back is the same as the SID you provided). However, that doesn't help with getting the list of valid options.
Fortunately, the Salesforce schema includes a field on User, TimeZoneSidKey, that is a picklist containing all the valid SID values. This can be queried in Apex thus:
List<PicklistEntry> entries = Schema.SObjectType.User.fields.TimeZoneSidKey.picklistValues;
Each entry contains a single SID, which is the actual "value" for the entry.
3
FYI you can drop theSchema.in most cases, including this one.
– Adrian Larson♦
Mar 18 at 16:29
User.TimeZoneSidKey.getDescribe().picklistValuesalso works
– cropredy
Mar 18 at 16:58
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
add a comment |
If you call TimeZone.getTimeZone with an invalid SID you get back the "GMT" time zone instance - this is one way to validate that your SID is supported (by checking that the SID for the object you get back is the same as the SID you provided). However, that doesn't help with getting the list of valid options.
Fortunately, the Salesforce schema includes a field on User, TimeZoneSidKey, that is a picklist containing all the valid SID values. This can be queried in Apex thus:
List<PicklistEntry> entries = Schema.SObjectType.User.fields.TimeZoneSidKey.picklistValues;
Each entry contains a single SID, which is the actual "value" for the entry.
3
FYI you can drop theSchema.in most cases, including this one.
– Adrian Larson♦
Mar 18 at 16:29
User.TimeZoneSidKey.getDescribe().picklistValuesalso works
– cropredy
Mar 18 at 16:58
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
add a comment |
If you call TimeZone.getTimeZone with an invalid SID you get back the "GMT" time zone instance - this is one way to validate that your SID is supported (by checking that the SID for the object you get back is the same as the SID you provided). However, that doesn't help with getting the list of valid options.
Fortunately, the Salesforce schema includes a field on User, TimeZoneSidKey, that is a picklist containing all the valid SID values. This can be queried in Apex thus:
List<PicklistEntry> entries = Schema.SObjectType.User.fields.TimeZoneSidKey.picklistValues;
Each entry contains a single SID, which is the actual "value" for the entry.
If you call TimeZone.getTimeZone with an invalid SID you get back the "GMT" time zone instance - this is one way to validate that your SID is supported (by checking that the SID for the object you get back is the same as the SID you provided). However, that doesn't help with getting the list of valid options.
Fortunately, the Salesforce schema includes a field on User, TimeZoneSidKey, that is a picklist containing all the valid SID values. This can be queried in Apex thus:
List<PicklistEntry> entries = Schema.SObjectType.User.fields.TimeZoneSidKey.picklistValues;
Each entry contains a single SID, which is the actual "value" for the entry.
answered Mar 18 at 16:28
Phil WPhil W
481210
481210
3
FYI you can drop theSchema.in most cases, including this one.
– Adrian Larson♦
Mar 18 at 16:29
User.TimeZoneSidKey.getDescribe().picklistValuesalso works
– cropredy
Mar 18 at 16:58
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
add a comment |
3
FYI you can drop theSchema.in most cases, including this one.
– Adrian Larson♦
Mar 18 at 16:29
User.TimeZoneSidKey.getDescribe().picklistValuesalso works
– cropredy
Mar 18 at 16:58
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
3
3
FYI you can drop the
Schema. in most cases, including this one.– Adrian Larson♦
Mar 18 at 16:29
FYI you can drop the
Schema. in most cases, including this one.– Adrian Larson♦
Mar 18 at 16:29
User.TimeZoneSidKey.getDescribe().picklistValues also works– cropredy
Mar 18 at 16:58
User.TimeZoneSidKey.getDescribe().picklistValues also works– cropredy
Mar 18 at 16:58
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
Look at all that typing you guys could have saved me ;)
– Phil W
Mar 18 at 17:06
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f254332%2fhow-can-i-query-the-supported-timezones-in-apex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown