- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2017 01:43 AM
Hello,
I need to mask field on the form as we mask on record producer by using mask type. I doesn't want to use password type.
Can anyone help me out??
Thanks,
Nitesh
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2017 02:02 AM
Hello Nitesh,
From Istanbul and Jakarta version, If you use a password(encrypted type 2). it will automatically mask the field on service portal. there by you can decrypt that by the following code:
var Encrypter = new GlideEncrypter();
var encrypted = current.variable name;
var decrypted = Encrypter.decrypt(encrypted);
current.u_client_instance_password = decrypted;
current.update();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2019 11:41 PM
Hi , it is masking at the portal. But at the back end form when i am viewing the record as an admin user i am able to see the values in the XML. Any workaround for this.?