You need to sign in to do that
Don't have an account?

not a valid child relationship name for entity Account
I am getting the following error while trying to put one of my custom object related list on Account Detail page.
Content cannot be displayed: 'Application__c' is not a valid child relationship name for entity Account
Here is my vf page
<apex:page standardController="Account"> <apex:relatedList list="Application__c"/> </apex:page>
I am able to save the vf page but when I put the page on Account details page, its not showing anything but an error.
Hello,
You do not have the correct name for the list.
Go to Setup > Create > your custom object, Application. Click on the custom field, the Master-Detail that makes the link to Account. There you will find the real Child Relationship name, should be a plural form without the "__c". Try "Applications"
Ty,
Adrian
Just to add if the default values were set the vf code should be
Its not a master-detail...its a lookup relationship.
<apex:relatedList/> should work with lookup relationship, as well as master/detail relationships
I recommend copy/pasting the relationship name, to make sure you've got it exactly right. @AdrianCC described the path to looking it up.
Avi is right. the correct name for the list should be
Have you tried it and it didn't work?
Happy Thursday,
Adrian