Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Suggested Answer
Replies
4 replies
Answers
1 answer
Subscribers
9 subscribers
Views
11290 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
GMT to EST and EST to GMT
nimishan
over 8 years ago
Hi,
I wanted to know the functions which helps me convert the datetime from GMT to EST and vice versa.
I need this logic to handle service Json response and request which deals with date in EST timezone.
Thanks in advance,
Nimisha.
OriginalPostID-249811
Discussion posts and replies are publicly visible
0
ajinkyab277
Certified Lead Developer
over 8 years ago
you can use local and gmt function for date conversion.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
shailendras593
over 8 years ago
Hi @nimishan having a look at functions like gmt() and local() might bring some help.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Krishna Chaitanya
A Score Level 1
over 8 years ago
Hi @ nimishan
use this code to convert time zone GMT to EST
append(
text(gmt(local(
now(),"EST")), "mm/dd/yyyy"), " EST")
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Reject Answer
Cancel
0
Mike Schmitt
Certified Lead Developer
over 8 years ago
Also, I forget the specifics but in the past I've found it helps a lot to cast a date to string using tostring() when dealing with JSON conversion.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel