• ovadbar
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
Why can I not put the standard Task/Event "Type" field on a custom report type that includes activities?  It seems like a no brainer that the Type field should be on there for filtering purposes.  I would use the standard report types for activities but I want to filter by contact id and that field is not available to me in the standard reports just the contact name.  When I say the standard reports I mean that ones that are called "Activities with Custom Object".  So my tasks are "Related To" the custom object and the "Who" is the contact id.  I can get all of the information I need with a custom report type except for the "Type" field it will not allow me to put that field on the report layout.  Any ideas? 
  • November 17, 2008
  • Like
  • 0
Hi,

I need to display a VF page on the home page (I am overwriting the task component). For this I have  create a HTML homepage component and use the iframe tag pointing the src attribute to my VF page, to make this I use an s-control. Example:

Code:

<IFRAME src="/apex/myTasks" width="100%" height=400 frameborder="no"> </IFRAME>
 
However I have a problem with this. In my VF page a have a buttom "new" to be able to create a new Task. But because I am in an iframe the new page is download in the iframe. I have tried with this:

Code:
<apex:commandButton onclick="JavaScript&colon; parent.location.href ='/00T/e—retURL=%2Fhome%2Fhome.jsp';" value="New" id="theButton"/>

 
But when I click on the buttom it doesn't do anything, I am always in the same page.Any ideas?

Thanks!



  • September 22, 2008
  • Like
  • 0