Learn about the new Oracle AI Agent Studio for Fusion Applications: Watch Now
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
How to hide the delete button on Redwood Check-In page?
Hi,
It is obvious requirement to hide something for employee and do not hide for Managers and HR or Vice Versa.
We have similar requirement of hiding Delete button on Redwood Check-in document page conditionally from VB expression. We have an option to hide the Delete button in VBS but the values are just TRUE or FALSE. But We want to hide Delete button for employee and Keep it enabled for Line Manager when he is acting upon his direct reports.
We tried below VB expression: It is working fine for Employee but not for managers.
$application.user.roles.includes('PER_LINE_MANAGER_ABSTRACT')?false:true
0