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
MilesSMilesS 

'Rent_Schedules__r' is not a valid child relationship name for entity Opportunity

Hey,  I am having an issue with a visualforce page.  I can't see to get the list to load.  I have checked my permissions & don't have any issues with my code.  I have also tried different variations of the list name (Rent_Schedules__r,Rent_Schedule__r,Rent_Schedules__c,Rent_Schedule__c).  I believe the correcet sintax is Rent_Schedules__r.  Do you have any idea of what could be the issue?

Error Message: 'Rent_Schedule__r' is not a valid child relationship name for entity Opportunity
<apex:page standardController="Opportunity">
    <apex:relatedList list="Rent_Schedules__r" pageSize="50" rendered="{!$ObjectType.Rent_Schedules__c.accessible}"/>
</apex:page>
User-added imageUser-added image
 
Best Answer chosen by MilesS
Vishwajeet kumarVishwajeet kumar
Hello,
You can go to workbench (https://workbench.developerforce.com)  and login using org credentials, navigate to Info and then "Standard and Custom objects". Select Opportunity and view all child relationship names, find the object relationship name you are looking for.

Thanks