• Slava Tsytskovsky 4
  • NEWBIE
  • 10 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hello everyone! Could you help me to change the icon color in the header of the datatable? I cann't find any info about that possibillity... 
User-added image

Hello!
I would be very appreciate if you help me.

Where stores Chatter Stream? I mean in which object. I need to catch when Chatter Stream is created.

Hello!

Could you help to solve this ussue?

I cann't create an anouncement via Apex. I used this code, but it doesn't work properly.

List<ConnectApi.MessageSegmentInput> test = new List<ConnectApi.MessageSegmentInput>();
        test.add('test');
        ConnectApi.MessageBodyInput testBody = new ConnectApi.MessageBodyInput();
        testBody = test;
        ConnectApi.AnnouncementInput testGroup = new ConnectApi.AnnouncementInput();
        testGroup.body = testBody;
        testGroup.expirationDate = Date.today() + 2;
        testGroup.parentId = '0F95i000000xSYpCAM';
        ConnectApi.Announcement.postAnnouncement(null, testGroup);

Hello!

Could you help to solve this ussue?

I cann't create an anouncement via Apex. I used this code, but it doesn't work properly.

List<ConnectApi.MessageSegmentInput> test = new List<ConnectApi.MessageSegmentInput>();
        test.add('test');
        ConnectApi.MessageBodyInput testBody = new ConnectApi.MessageBodyInput();
        testBody = test;
        ConnectApi.AnnouncementInput testGroup = new ConnectApi.AnnouncementInput();
        testGroup.body = testBody;
        testGroup.expirationDate = Date.today() + 2;
        testGroup.parentId = '0F95i000000xSYpCAM';
        ConnectApi.Announcement.postAnnouncement(null, testGroup);