---
sourceDocument: Australia Mobile Configuration and Navigation
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/mobile

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia Mobile Configuration and Navigation

ft:clusterId :

    - mobile

bundleId :

    - mobile

workflow :

    - Development, Data and Analytics


---

# Use timestamps to track user changes

# Using timestamps to track user changes in an input form {#ariaid-title1}

* Release version: Australia
* 
* Updated March 12, 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read

Use the following code to extract data to monitor the timestamp of changes made by different users on an input form screen.
Timestamps can be retrieved via the script when the Track timestamps for input updates field is enabled in the input form's record. Enable the field to track the time input values are changed. For more
information, search for the field Track timestamps for input updates in the topic [Configure an input form screen](https://servicenow-prod.fluidtopics.net/PVSI3Faa8_DKNk1SxKRsJQ "Configure an input parameter so that your users can see a list of records from their mobile app. To access a record from the list, a user just has to tap the record name.").

The following script is an example of how to retrieve timestamps based on when the input's value was changed. The information is accessible using a scripted writeback action.

    (function WriteBackAction(parm_input, parm_variable, actionResult, additionalData) { 
    // var additionalInputDataMap = additionalData.getAdditionalInputDataMap();
    var input1Timestamp = additionalInputDataMap["input1"].getLastUpdatedTimestamp(); // input1 stands for the input's name. Could be any input type
    //Handle timestamp logic here
    })(parm_input, parm_variable, actionResult, additionalData);


