function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
amit mittalamit mittal 

How to assign Today date and time in a custom field by Scontrol

Hi,
I want to assign current date and time to Cutom field of a custom object using Scontrol .
Issue is  user-org time zone may be differnt from the machine from where he is accessing his org.
So if I will use Java script date() and getDate and getYear method , I will get time and date for that machine .
so how can I get date and time which is pesent in his org
 
 
as format for date time datatype is "2008-05-21T20:03:00.000Z"  how can I convert todays date and time in this format as it also includes some 000Z .what is mean by this here ......
 
thanks
Greg HGreg H
Create a JavaScript date/time variable and assign "{!NOW()}" to it.  That will get the current time/date for the running user and allow you to manipulate the variable in any way you desire.
-greg