Skip to main content
Ramsay Allen 님이 #Sales And Marketing에 질문했습니다
Is it possible to export the opportunity "feed" in Salesforce classic to excel?
답변 1개
  1. 2017년 11월 8일 오후 5: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