• Yasin Pardhan 1
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
How do I add the CSS to Salesforce to Truncate the Pardot First Referrer field?  In Chrome if I view the page source and add the correct CSS code to the page it will work but how do I add this CSS to Salesforce for it do it everytime automatically.

Hi All,

 

I Have fetech Opportunity Record with Task in Sub query. My Query is Like This 

 

Select Id, Name,

(Select Id, ActivityDate From Tasks)

From Opportunity Where IsClosed=False And BCD_Firm__c = true  And Regional_Manager__c = 'XYZ' Order By Regional_Manager__c 


This Query is Returning Opportunity List and it is showing only only Last 1 -2 Years Task not all Task List.

 

I have also fetched Separately Task by Using this Query but this This returns No Tasks for the Selected Opportunity

Select Id, ActivityDate From Task Where WhatId = 'ABC'

 

Here 'ABC' is Opportunity ID

 

 

Even Though Tasks Related List in organization show activities. I could not find proper explanation for this behaviour but i think SOQL query is auto filtering activities which are very old like tasks which are 4-5 years old. 

 

Can anybody Help me to figure out This Problem ?