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
Mike0001Mike0001 

related list on fields page

Hi

 

I see related lists(open activities and notes/attachments) on page layout section for contacts object.

I also see them in enterprise wsdl as fields(query result) under Contacts. 

 

I do not see these relations on fields list (setup->customize->contact->fields) however. 

 

I have noticed this behaviour(relations missing on fields page) for other objects also.

 

How can I see any existing relations for any object as fields?

 

thanks

mike

sfdcfoxsfdcfox

Child relationships are not fields, and hence can not be displayed as such. If you were willing to take the effort to recreate the page as a Visualforce page, you would end up creating a outputText tag, with the value of that tag being generated by your page controller (remember to use escape="false" so your links render correctly, if you choose to render links in a list).

Cool_DevloperCool_Devloper

The relationship fields can be either "LookUp" or "Parent-Child".

 

So, you can check the fields in the object of these types.

 

Cool_D