Questions tagged [feeditem]
FeedItem represents an entry in the feed, such as changes in a record feed, including text posts, link posts, and content posts.
201 questions
0 votes
0 answers
72 views
Connect Api feedItem is not posting for the experience cloud users
I am trying to create a feedItemPost via code below and I want this feed to be visible across all experience sites within the org as well as on backend SF on the Case record. But it is not working out....
0 votes
1 answer
97 views
Add custom component into specific feed tab
Issue: I have a custom aura component and I want to add that or show that only when Email tab is clicked. The orange color box is my custom component and i added that into feed. but now its ...
0 votes
1 answer
49 views
Only 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 ...
0 votes
0 answers
413 views
How 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 ...
-1 votes
1 answer
808 views
Remove 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?
1 vote
1 answer
328 views
Error during saving FeedItem with type ContentPost using API above 35
I am trying to save FeedItem with attachments. In that case I set type of FeedItem to ContentPost. During saving FeedItem I am getting 2 errors of FIELD_INTEGRITY_EXCEPTION type: ContentFileName is a ...
0 votes
1 answer
60 views
Not getting RecordId on feedItem component in Aura!
I am new to salesforce and started learning it a few days back, here am trying to make develop a community and I developed one but getting a few 2 bugs that I need to resolve. In my community I have ...
-1 votes
1 answer
249 views
A user create a record in FeedItem using lwc (experiencecloud) but he cannot able to view the records in Exp cloud site. but admin can, how solve this
A user can create a record in FeedItem using lwc but he cannot able to view the records in Experiencecloud site. How to solve this issue?
-1 votes
1 answer
313 views
Emails and Notification are not triggered after creating FeedItem record in Apex
After creating a FeedItem record in Apex, emails and notifications are not triggered to the person who had created the chatter FeedItem. So do I need to create a custom notification and email for this?...
0 votes
1 answer
606 views
Collaboration 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?
0 votes
1 answer
299 views
How can I get the view count of the discussions(Feed Item) in apex in Salesforce?
I am building a custom component where I want to show discussions with the number of views on it. I checked the feeditem object but there is no field for view count. Is there some other object which ...
0 votes
1 answer
142 views
Use 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 ...
1 vote
1 answer
299 views
get user id in feeditem salesforce
Good morning, I have this trigger to try to retrieve the mention id of a user in a feeditem. I need to send a custom notification to the mentioned user and my trigger has the following error. Does ...
1 vote
2 answers
3k views
Is it possible to find ContentDocument and attach that file to a FeedItem through a flow?
I am trying to create a feeditem and trying to find a documentcontent file and attaching it to this feeditem through a flow. I think I can find the version of the contentdocument by looking at the ...
2 votes
0 answers
1k views
How to determine if a given User can view a given FeedItem
I'm using the query API to retrieve User and FeedItem objects. I want to be able to determine which users can read/view which feed items. FeedItem has Visibility property, but it doesn't help much. ...