• AmyJones
  • NEWBIE
  • 0 Points
  • Member since 2011
  • Project Lead
  • LegalforLandlords

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
I am trying to amend a report to only show records that were amended over 4 hours ago.
We have a date/time field thats shows the amended time.
Can this be filtered on a report or do i need to create a formula checkbox field? Im am striggling with the formula for this.
 
I am using below but the text is still showing

rendered="{!objTenant.Applicant_Status__c=='Submitted'}"
I am making some changes to a visualforce page

Currently a certain section is hidden if Service = Initial
I need to change it so it is hidden if Service = Initial OR Smart

<apex:outputLabel value="No of Guarantors: " style="align:left" rendered="{!if((leadTrType != 's' && UPPER(leadService)!='INITIAL'),true,false)}"> </apex:outputLabel> <apex:selectList tabindex="83" value="{!selectedNoGuarantors}" size="1" disabled="{!if(IsNextForApp,true,false)}" rendered="{!if(leadTrType != 's' && UPPER(leadService)!='INITIAL',true,false)}">
I am using below but the text is still showing

rendered="{!objTenant.Applicant_Status__c=='Submitted'}"

Hi 

 

I have written one trigger on Feedcomment. It's working fine on sandbox but when we move into the production

some new exception is coming i.e.

System.LimitException:Query of LOB fields caused heap usage to exceed limit.

 

The error is coming on this SOQL query:

 List<UserFeed> usefd = [SELECT Id, Type, body, ContentFileName, createdbyId, InsertedById, ParentId, Body, Title, ContentData,     FeedItemId,(SELECT CommentBody, InsertedById, FeedItemId FROM FeedComments ) from UserFeed where CreatedById =: feedcommentid ORDER BY  CreatedDate ];

 

Does any one know what type of error is this.

 

Thanks,

Rajiv

 


  • October 14, 2011
  • Like
  • 0