Guest User

Untitled

a guest
Jul 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public without sharing class timeZonetEst {
  2. Public Static void Method(){
  3. Account acc=[select id,CreatedDate from Account limit 1];
  4. Datetime dTime = acc.CreatedDate;
  5. system.debug(dTime);
  6. Integer offset = UserInfo.getTimezone().getOffset(dTime);
  7. Datetime local = dTime.addSeconds(offset/1000);
  8. system.debug(local);
  9. }
  10. }
Add Comment
Please, Sign In to add comment