Start a new topic
Answered

Restrict access of attributes

How to restrict access of attributes for certain user roles?


Best Answer

Can be resolved using semQL by following the below steps:

  1. Go to forms and select the attribute you want to hide.
  2. Select the ‘General’ tab and click on 'ReadOnly'
  3. On the right side of the screen select the ‘Edit’ to semQL
  4. Write logic to make the attribute disabled for the user.
  5. Ex : Case when :V_USER_ROLES like '%BusinessUser%' then '1' else '0' end
1 Comment

Answer

Can be resolved using semQL by following the below steps:

  1. Go to forms and select the attribute you want to hide.
  2. Select the ‘General’ tab and click on 'ReadOnly'
  3. On the right side of the screen select the ‘Edit’ to semQL
  4. Write logic to make the attribute disabled for the user.
  5. Ex : Case when :V_USER_ROLES like '%BusinessUser%' then '1' else '0' end
Login to post a comment