For partners that build or integrate commercially available applications and service solutions with the Oracle Cloud Platform
For partners that provide implementation or managed services around Oracle Cloud Applications
We want to mask custom field values by replacing with "*" or "#" for sales rep roles. Values to be visible only for Managerial roles
Comment
Hello Jeevthan,
Currently, this is not available as an option, but Product Enhancement 22180500 has been raised and approved for future releases by Product Management.
Hope this info helps you.
Thanks,
Arun.
Average Rating:



2 ratings
|
Sign in to rate this
Hi Jeevthan,
as a workaround, you can replicate the fields you want to mask as custom formula fields, and create a custom layout for sales reps where you show those formula fields instead.
The way to mask those fields would be:
Imagine you want to mask a phone number:
def vPhoneNumberMasked = ''
def vPhoneNumber = getAttribute('PhoneNumber API Name') //This is the field you want to mask, for example +44 1111 222333
if(vPhoneNumber is not null)
{
vPhoneNumberMasked = "***" + right(vPhoneNumber,4)//The phone would looklike -> ***2333
}
return vPhoneNumberMasked
Hope it helps
Average Rating:



1 rating
|
Sign in to rate this
Thank you this helped me too
Average Rating:



2 ratings
|
Sign in to rate this