Title attribute of in FeedItem is replaced by null
I posted several FeedItems using Salesforce Rest API but the title attribute of <a> tags in rich texts were not working correctly for me. For instance, POST /sobjects/FeedItem/ { "ParentId":...
View ArticleSearch in All Fields plus topics for feeditems
I currently have an SOSL query [FIND :finalSearchText IN ALL FIELDS RETURNING FeedItem(Id, Title WHERE Type = 'QuestionPost') LIMIT 10]; This works great for searching the feed item title and body....
View ArticleInvoking trigger when an answer is marked as Best Answer in Chatter
I am trying to invoke a trigger when an answer is marked as 'Best Answer' in Chatter Question. I tried a trigger on FeedItem and FeedComment objects, but the triggers were not invoked when I mark an...
View ArticleCan Chatter ConnectAPI be used to search chatter post feed only
Currently i am trying get chatter feed in visualforce page. I only want the feed which has a query string. But i want all the recent comments for the post. I couldn't find a visualforce tag to get the...
View ArticleWhich Type of FeedItem Records can I import?
I am facing a SF to SF migration and despite all efforts to avoid it, chatter posts have to be migrated as well. I wanted to know which types of chatter posts I am actually able to create via the API...
View ArticleAccess Errors on FeedAttachment for Chatter Test Class
I am designing a test class for a Chatter component controller I did not design, and I am having issues creating test data. I have posted code below my issue description. I have removed most of the...
View ArticlePOST as another user using Salesfore API. (Sender Id unavailable in request...
I am trying to use chatter REST API to GET and POST data into custom C# application from a Salesforce. I am able to get data successfully. But, when I try to POST data into Salesforce as a particular...
View ArticleCustomer user cannot create chatter post on a community group
I have an issue when I try create a post from an apex class, the user is a customer community user and I create the post from a Lightning...
View ArticleUnable to set isRichText to true with Flow
I have a flow that copy a Chatter post to the chatter of a related record. The issue is that there are unwanted html tags added to the chatter of the related records: I try to update the record of all...
View ArticleHow get FeedItem with type TrackedChange
when i execute this:Account acc = new Account(Name = 'newTest1',Phone = '+4444444444');insert acc;acc.Name = 'ChangedTestAnonimusAcc';acc.Phone = '+55555555555';update acc;List<FeedItem>...
View ArticleQuery Chatter Feed, Topics, and Groups
First off, my end goal is lofty and time-consuming, but we need metrics and this is the best way to do it (that I can think of). Originally, a chatter post was created on the quote, case, or where...
View ArticleIs there any way to have a very lazy evaluation of Labels used in Salesforce...
I'm currently working for a company whose main language is German though they are an increasingly multilingual company.I have a requirement that when some event happens, notifications should be sent...
View Article'Enable Unread/Read on Compact Case Feed' feature impacting...
New feature: Enable Unread/Read on Compact Case Feed enabled in Support Settings from Winter...
View ArticleHow to render one component after another
I have an aura component which is a combination of forceChatter:Publisher and forceChatter:feed. But here in my case forceChatter:feed is getting rendered before forceChatter:Publisher. I want...
View ArticleSetup ConnectApi.FeedElementPage with message mentions for Test...
I have a class that uses ConnectApi.ChatterFeeds.getFeedElementsFromFeed and from the result page I extract the mentioned users.This is working as intended but now I have to create a test for this and...
View ArticleSalesforce Sites - FeedItem requires a filter by Id
I get an error message when I try to do a Javascript Remote soql query on FeedItems through "sites". It works perfect when I do this within salesforce with a standard user but it doesn't work through...
View ArticleHow can I change the FeedItem's sender?
In the case of the image, the user Alanna Clark updated an account and my trigger runned and posted the FeedItem.But I want to change the sender ("Alanna Clark") for another user called "INTERFACE"...
View ArticleChatter - Can conversations that mention objects appear in the object's...
We are exploring the use of Chatter to replace some business comms that are currently use Slack.If I mention an object (e.g. an Opportunity) on a chatter feed, can the conversation be displayed on the...
View ArticleSOQL CustomObject__Feed See Just see posted messages (different from draft)...
I am doing the following SOQL query to retrieve all messages on Chatter for the Essai custom objectselect CreatedById, CreatedDate, parent.Name, parentId, Id, Body, (select Id, CommentBody, CreatedDate...
View ArticlePopulate Case Subject in Chatter feed post
We are using salesforce cases and Case owners have been using Chatter to ask questions about the case. The problem is that chatter messages sent from cases only show the case number in the email. There...
View ArticlePreserving @mentions in the FeedItem trigger edit
I have written before insert trigger that concatenates Case Subject to the Chatter post when it is posted from the case record. But when I do that, @ mentions are getting stripped from the chatter post...
View ArticleChatter Posts created from Apex not visible from Profile view
I am creating a chatter post (FeedItem) from a trigger on a custom object after update of that object. I want that post to be visible on the user's profile that I have specified in the ParentId.The...
View Article--- Article Not Found! ---
*** *** *** RSSing Note: Article is missing! We don't know where we put it!!. *** ***
View ArticleRetrieve UserId of @mention user from chatter post in Apex
Is there a way to retrieve the user id of @mention user from chatter post in Apex? We can write a before insert trigger on feeditem, but when we display the body (which has @mention user) it simply...
View ArticleUse Specific Case Field to Create Chatter Feed Item
Currently I've noticed when a Chatter feed item gets created for a Case record, the Auto Number field is what the Post initially gets created with.We've got a separate Case Name field that is more...
View ArticleCollaboration Groups not showing in the Community in Salesforce
I created a group with in salesforce which is a public group. I am able to see that group within salesforce but that group is not visible in community. Can someone tell me why it’s happening?
View ArticleRemove comment from Chatter post
I would like to remove the option to comment on the post made in the Chatter feed.Does anyone know if it is possible and how to do it?
View ArticleHow to @mention when creating a FeedItem record via Flow?
I am having an issue when trying to create a FeedItem record via Flow, where I need to @mention the full name of the OwnerId of the Lead record which triggered the flow. However, when the FeedItem post...
View ArticleOnly Trigger Apex when File is not uploaded via chatter feed on Case
I have an apex trigger that creates a Chatter post on a case when a file is uploaded to that case. The code is working perfectly fine, the issue is I want to be able to restrict this code to only run...
View ArticlePosting Badge Information to Chatter
I'm trying to do a Thanks post via Apex. More specifically, I want it like this : These are the steps I have taken to be able to post a Badge. 1. Created a WorkBadgeDefinition Object2. Connected the...
View Article