Related list needs to be shown

Rohit Reddy
Tera Contributor

We have Created related list and we want to show that related list to only with   Particular  4 groups , apart of 4 groups  no other groups can see that relatedlist option how do I achieve this requirement ?

1 ACCEPTED SOLUTION

Mahesh Baraskar
Mega Guru

Update your form to display a related list

  •  
  •  
San Diego

Last updated: February 3, 2022

View solution in original post

3 REPLIES 3

Yousaf
Giga Sage

Hi Rohit,

Please refer to this link

Hiding Related Lists and Embedded Lists

You can try onLoad client script

if(g_user.isMemberof('<group name>'))
{
g_form.showRelatedList('related_list_table_name');
}
else
{
g_form.hideRelatedList('related_list_table_name');
}

 

Method to refer

find_real_file.png

 

Mark Correct or Helpful if it helps.


***Mark Correct or Helpful if it helps.***

1. Where you said in your question its for mobile?
2. The Answer you corrected where its restricting to particular groups??

I think you should correct the right answer if you find any or Keep the thread open untill its solved.
Other people will come and look for answers for the same questions.


***Mark Correct or Helpful if it helps.***

Mahesh Baraskar
Mega Guru

Update your form to display a related list

  •  
  •  
San Diego

Last updated: February 3, 2022