function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ash ash 7ash ash 7 

Add Contact Link on Case Contact Related List

Created a junction Object CaseContact between (Case and Contact).

Related list of CaseContacts are configured on the Case Page Layout as shown in following screen shot:

User-added image
I would like to add a link to a Contact related list which will be navigated to Contact details page.
But I do not see a field to be added in a related list configs. Is this possible using standard configuration without custom development ?
User-added image

 

 

Best Answer chosen by ash ash 7
Sunil MadanaSunil Madana
Hi,
Create a Formula Text field and use the below to generate link to the contact. But make sure you replace the "<<Id>>" in the below formula with your CaseContact's contact id. I am not sure if you can add a link to Contact related list, but the below method will redirect you to Contact details page.
HYPERLINK("/lightning/r/Contact/" & <<Id>> & "/view","Click to view Contact")

All Answers

Sunil MadanaSunil Madana
Hi,
Create a Formula Text field and use the below to generate link to the contact. But make sure you replace the "<<Id>>" in the below formula with your CaseContact's contact id. I am not sure if you can add a link to Contact related list, but the below method will redirect you to Contact details page.
HYPERLINK("/lightning/r/Contact/" & <<Id>> & "/view","Click to view Contact")
This was selected as the best answer
ash ash 7ash ash 7
Thanks Sunil , I was able to add link to the related list