Best Practice: Remove decimal place from timestamp field and convert to human-readable time

At times it may be necessary to convert data from the timestamp field into human-readable format. To complete:

| PasswordLastSet := PasswordLastSet*1000
| PasswordLastSet := formatTime("%Y-%m-%d %H:%M:%S", field=PasswordLastSet, locale=en_US, timezone=Z)