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
XactiumBenXactiumBen 

Syndication Feeds with Custom Objects

I have tried unsuccessfully to create a syndication feed for one of my custom objects.  I have created a simple one for accounts like this:

 

Query: SELECT Id, Name, Rating, Owner.Name, CreatedDate FROM Account Mapping: ft: "Account Feed", et: Name, ec: Rating, el: "/" + Id, ea: Owner.Name, eu: CreatedDate

 

 

But when it comes to creating one for a custom object I get this error for some reason:

 

•Query: The SOQL for this feed refers to an invalid object type. Check the syntax of the query and make sure that any objects referenced are readable via your site's public access settings.

 

 

I have given the custom object Read access in the Sites public access settings and also checked the field level security in the same place.  Is there anything else I'm meant to be applying to the object to get this to work? I know I've had trouble giving access to custom objects before in one of my Sites pages.  Has anyone else had this trouble?

BulentBulent

Can you post your query for the custom object?

Also, make sure your custom object has status "Deployed"