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
FinnArildFinnArild 

RSS Feed - Mapping not working as documented

... or I can at least not make it work :) ...

 

I have a custom object "Courses" and the following query:

 

 

SELECT Name, Description__c FROM Course__c

 

 And looking at the documentation made the following errorneous mapping:

 

 

ft:"Qt Course Calendar", et:Name, ec: "Description " Name "<br/>" Description__c, ea:"Created by Winnie Pooh"

 

 It fails with:

  • Mapping: Unexpected token IDENTIFIER(Name) at character 53 of input

 

Now - if I remove the fields from the ec: I can save it - but that doesn't neither give me what I need or correspond with the documentation.

 

All permissions should be ok - what am I doing wrong?

 

 

 

Best Answer chosen by Admin (Salesforce Developers) 
BulentBulent

try the following:

 

ft:"Qt Course Calendar", et:Name, ec: "Description "+Name+"<br/>"+Description__c, ea:"Created by Winnie Pooh"

 

 "+" instead of space