Quantcast
Channel: Active questions tagged feeditem+chatter - Salesforce Stack Exchange
Browsing latest articles
Browse All 64 View Live

Image may be NSFW.
Clik here to view.

Posting 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 Object 2. Connected the...

View Article



Image may be NSFW.
Clik here to view.

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 Article

Search 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 Article

Invoking 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 Article

Can 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 Article


Which 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 Article

Access 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 Article

POST 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 Article


Customer 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 Article


Image may be NSFW.
Clik here to view.

Unable 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 Article

How 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 Article

Query 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 Article

Is 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 Article

How 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 Article


Setup 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 Article

Salesforce 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 Article


Image may be NSFW.
Clik here to view.

How 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 Article

Image may be NSFW.
Clik here to view.

Chatter - 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 Article

SOQL 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 Article

Populate 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 Article


Preserving @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 Article


Chatter 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 Article

Retrieve 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 Article


Image may be NSFW.
Clik here to view.

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...

View Article

Is there a way to get the share count of discussions in community salesforce?

I'm working on a component and need assistance with retrieving the share count of a FeedItem using Apex.I have explored the Salesforce documentation and resources but haven't been able to find a...

View Article

Salesforce "Knowledgeable People" component not showing data in community...

I have dragged the "Knowledgeable People" component on the topic detail page and configured it as per the guidelines given in the documentation. But the data is not getting shown in the community. I am...

View Article

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?

View Article



Image may be NSFW.
Clik here to view.

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?

View Article
Browsing latest articles
Browse All 64 View Live




Latest Images