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
dkclxdkclx 

Salesforce2Salesforce related list

trying to figure out the related list name for the S2S connections table to be included with an <apex:relatedlist> tag.  Anyone know what it is or if it can be added to a VF page?

sfdcfoxsfdcfox

Try using the PartnerNetworkRecordConnections list. I don't have S2S on my org, so I can't try it myself, but I'd be willing to bet that is your ticket.

dkclxdkclx

Thanks ... I've tried that one before:

 

<apex:relatedList list="PartnerNetworkRecordConnections" subject="{!account.id}"/>

 

 

 

And the error I get is:

PartnerNetworkRecordConnections' is not a valid child relationship name for entity Account

 

It seems like maybe that's not exposed for some reason to VF, even though it's in the schema?

 

 

sfdcfoxsfdcfox

That's likely. I wish I could be more help, but like I said, I don't have S2S available to me. You might have to go the long way around by querying the records and building your own custom data table.