in a restlet, is the time zone that the code is ru...
# suitescript
k
in a restlet, is the time zone that the code is running in the same time zone as search results are constructed in? in other words, can i rely on last modified / created date being constructed correctly when parsed?
b
your code will run in pacific time
the results will be formatted in the timezone of the current user, which is not guaranteed to be pacific time
use N/format to parse the date, which takes into account the timezone and date format of the current user
k
👍 thanks 🙂