Not applicable

Hi @vamsi52 

Yes, You can add a condition to hide it based on certain criteria (e.g., user role, conditions related to the Business Application, or any custom logic). In the UI Action record, check for a condition under the Condition field.

OR

use following client script:

if (g_user.hasRole('admin'))

{

g_form.setDisplay('create_button', false);