Skip to main content
Ramsay Allen a posé une question dans #Sales And Marketing
Is it possible to export the opportunity "feed" in Salesforce classic to excel?
1 réponse
  1. 8 nov. 2017, 17:43
    Well, I guess you can. You should be looking at the FeedItem object and then extracting everything from that via Data Loaders(say Apex Data Loader or Dataloader.IO etc).

     

    Tip: While using Data Loader, you will have an option to modify the SOQL query that will be used to retrieve the data from the object. In that query you can add a WHERE clause to filter out just the FeedItem records associated with the Opportunity object alone.

     

     

    SELECT .... FROM FeedItem WHERE Parent.Type = 'Opportunity'

0/9000