Skip to main content
KLD G perguntou em #Collaboration
  1. When case is created from partner Community User(Partner Communtity Profile), I'm creating record in FeedItem,
  2.         FeedItem fi = new FeedItem();

                    fi.Body = 'Feed Body';

 

                    fi.ParentId = '5003000000D8cuI';

 

                    fi.Visibility = 'AllUsers';

 

                    fi.NetworkScope = 'AllNetworks';  

 

              Insert fi;

 

3.Now i want this feed to be shown to Chatter Free User who is having "Chatter Free License".

 

How can i show this Feed to ChatterUser?

 

Any Approaches/Workarounds.

 

 
3 respostas
  1. 30 de set. de 2015, 17:56
    Yup, I agree.

     

    But I got an idea 

     

                       FeedItem fi = new FeedItem(); 

     

                       fi.Body = 'Feed Body';

     

                        fi.ParentId = 'Some Group Id'; Instead of caseId I have given Group Id

     

                        fi.Visibility = 'AllUsers';

     

                        fi.NetworkScope = 'AllNetworks';  

     

                        Insert fi;

     

    We can make use of Group. I am posting Feed to group & add chatterFree user and Partner to that group. Here the CHALLENGE is Partner community user unable to see Group created by System admin.

     

    Again I stopped here.
0/9000