• Vishnu Raj V
  • NEWBIE
  • 10 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 6
    Replies

Hi,
Salesforce Associate certification got suspended at the very last moment, and I mostly finished the exam before going to submit it, the proctor stopped and I was not able to submit the exam. I have already communicated with Kryterien support, but nothing to do from their side.
I have already created a case  6 days ago. If anyone experiences the same issue and got the resolution, please let me know.

Hi,

How to update mention in existing feedItem / feedcomment using any dataloader.
when I used workbench, the mention is saving as Text, not having the reference to that user.

Thanks in advance

Hi,
Salesforce Associate certification got suspended at the very last moment, and I mostly finished the exam before going to submit it, the proctor stopped and I was not able to submit the exam. I have already communicated with Kryterien support, but nothing to do from their side.
I have already created a case  6 days ago. If anyone experiences the same issue and got the resolution, please let me know.

I successfully completed the Salesforce Certified Platform Developer II - Multiple Choice (WI21) but didn't receive a certification logo and the certificate doesn't appear in the trailhead profile. Could anyone please give me a piece of advice?

Hi

A couple of days ago I started Salesforce Certified Exam, answered 1 question, and then it was paused. The image on the screen said: 'Please wait for our specialist to connect with you as soon as possible'. 20 minutes past nothing happened.
I connected to Kryterion Support, they answered me that no able to reschedule or cancel an exam and I should open a case in Salesforce Support.
SF Support has not been answered for a couple of days.
The exam still suspended now.

Does anyone has a suspended issue or know some solution?

Hi,

 

im trying to join FeedItem and FeedCommt.

 

In normal SQL I would do it like this:

 

"Select f.Body, c.CommentBody from FeedItem f join FeedComment c on f.Id = c.FeedItemId"

 

Nothing seems to work, so i hope you guys can tell whats wrong with that SOQL-Query:

 

"SELECT CommentBody, FeedItem.Body FROM FeedComment"

 

Thanks in advance

 

Sebastian

Hi,

 

I have requirement to fetch comment likes. I'm not able to figure out on how to retrieve commentlikes.

 

FeedLike object represents likes. You can't query FeedLike records directly. They can only be queried via the parent NewsFeedUserProfileFeed, or entity feed, such as AccountFeed.

 

So to query FeedPost likes, use following:

SELECT Id, (SELECT Id, CreatedById, CreatedDate, FeedItemId, FeedEntityId FROM FeedLikes) FROM UserFeed

 

to query group post likes, use following:

SELECT Id, (SELECT Id, CreatedById, CreatedDate, FeedItemId, FeedEntityId FROM FeedLikes) FROM CollaborationGroupFeed

 

How to retrieve comment likes?