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
willingwilling 

Display Contact Hierarchy in a custom object

I have a custom object where I have to display Contact Hierarchy similar to the one shown on standatrd object 'Contacts' , field  Reports To.   [View Org Chart]

If anyone have any ideas, please let me know.
Thanks,

Prerana
SGKingSGKing
Can you elaborate on this a little more? Why would the hierarchy at the contact page not be sufficient? How is this custom object related to the contact?

Jeremy King
agni.fireagni.fire
Hello,
Create an S- control and drop the S-control in your page layout.
Your S- control will need to look like below:
var contact_hierarchy_url="/cntc/contact_hierarchy.jsp?id="+Contact_id+"&isdtp=mn";
location.replace(contact_hierarchy_url);
 
Your S-control could inline ( drop it in the page layout) or available through a custom link.
 
Let me know if this help.